Advertisement
bastiangrimm

CustomGPT OAS Schema for DataForSEO

Mar 5th, 2024
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scheme 0.96 KB | Source Code | 0 0
  1. openapi: 3.1.0
  2. info:
  3.   title: DataForSEO API
  4.   version: "1.0"
  5. servers:
  6.   - url: https://api.dataforseo.com
  7. paths:
  8.   /v3/keywords_data/google_ads/search_volume/live:
  9.     post:
  10.       summary: "Get Live Search Volume for Keywords"
  11.       operationId: "getLiveSearchVolume"
  12.       requestBody:
  13.         required: true
  14.         content:
  15.           application/json:
  16.             schema:
  17.               type: object
  18.               properties:
  19.                 data:
  20.                   type: object  # Change to object
  21.                   properties:
  22.                     keywords:
  23.                       type: array
  24.                       items:
  25.                         type: string
  26.                     search_partners:
  27.                       type: boolean
  28.       responses:
  29.         '200':
  30.           description: Successful response
  31.       security:
  32.         - basicAuth: []
  33.  
  34. components:
  35.   securitySchemes:
  36.     basicAuth:
  37.       type: http
  38.       scheme: basic
  39.   schemas: {}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement