BrightEdge legacy API

Operation ported over from legacy API

Operations 28

GET /3.0/objects/accounts This call returns the list of accounts this user can access #
POST /3.0/objects/accounts/{account_id} This call returns the details of an individual account #
GET /latest3/objects/accounts This call returns the list of accounts this user can access #
POST /latest3/objects/accounts/{account_id} This call returns the details of an individual account #
GET /3.0/objects/keywordgroups/{account_id} This call returns the list of keywordgroups an account can access #
GET /3.0/objects/keywordgroups/{account_id}/{keyword_group_id} This call returns a list of keywords within the give keyword group #
GET /latest3/objects/keywordgroups/{account_id} This call returns the list of keywordgroups an account can access #
GET /latest3/objects/keywordgroups/{account_id}/{keyword_group_id} This call returns a list of keywords within the give keyword group #
GET /3.0/objects/domains This call returns a list of primary domains for accounts that the user has access to. #
GET /3.0/objects/domains/{account_id} This call returns a primary domain for given account id #
GET /latest3/objects/domains This call returns a list of primary domains for accounts that the user has access to. #
GET /latest3/objects/domains/{account_id} This call returns a primary domain for given account id #
GET /3.0/objects/competitors/{account_id} This call returns a competitors for given account id #
GET /latest3/objects/competitors/{account_id} This call returns a competitors for given account id #
GET /3.0/objects/keywords/{account_id} This call returns a list of keywords of the given account #
GET /latest3/objects/keywords/{account_id} This call returns a list of keywords of the given account #
GET /3.0/objects/time/{account_id}/{time_frequency}/{day} This call returns the time value for a given time frequency and day #
GET /latest3/objects/time/{account_id}/{time_frequency}/{day} This call returns the time value for a given time frequency and day #
GET /3.0/objects/datacube_searchengines/{account_id} This call returns the list of all the datacube search engines for given account_id #
GET /latest3/objects/datacube_searchengines/{account_id} This call returns the list of all the datacube search engines for given account_id #
GET /3.0/objects/searchengines/{account_id} This call returns the list of all the search engines for given account_id #
GET /latest3/objects/searchengines/{account_id} This call returns the list of all the search engines for given account_id #
POST /3.0/objects/query/{account_id} This call returns the BUDD BQL query results (for internal use only) #
POST /latest3/objects/query/{account_id} This call returns the BUDD BQL query results (for internal use only) #
POST /3.0/query/{account_id} This call returns the BUDD BQL query results (for customers) #
POST /latest3/query/{account_id} This call returns the BUDD BQL query results (for customers) #
POST /3.0/objects/qa_query/{account_id} This call returns the BUDD BQL query results only for QA #
POST /latest3/objects/qa_query/{account_id} This call returns the BUDD BQL query results only for QA #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/brightedge-legacy-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

brightedge-legacy-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: BrightEdge Platform Legacy API
  description: This API provides the ability to integrate with BrightEdge Platform
  version: 5.0.0
tags:
- name: legacy
  description: Operation ported over from legacy API
paths:
  /3.0/objects/accounts:
    get:
      tags:
      - legacy
      summary: This call returns the list of accounts this user can access
      operationId: get_all_accounts_3_0_objects_accounts_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LegacyAccountsListOut'
      security:
      - http_basic: []
      - forwarded_http_basic: []
      - session_cookie: []
      - session_header: []
      - api_token_header: []
      - bearer_token: []
  /3.0/objects/accounts/{account_id}:
    post:
      tags:
      - legacy
      summary: This call returns the details of an individual account
      operationId: get_account_3_0_objects_accounts__account_id__post
      parameters:
      - required: true
        schema:
          type: integer
          title: Account Id
        name: account_id
        in: path
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/LegacyAccountIn'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LegacyAccountOut'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - http_basic: []
      - forwarded_http_basic: []
      - session_cookie: []
      - session_header: []
      - api_token_header: []
      - bearer_token: []
  /latest3/objects/accounts:
    get:
      tags:
      - legacy
      summary: This call returns the list of accounts this user can access
      operationId: get_all_accounts_latest3_objects_accounts_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LegacyAccountsListOut'
      security:
      - http_basic: []
      - forwarded_http_basic: []
      - session_cookie: []
      - session_header: []
      - api_token_header: []
      - bearer_token: []
  /latest3/objects/accounts/{account_id}:
    post:
      tags:
      - legacy
      summary: This call returns the details of an individual account
      operationId: get_account_latest3_objects_accounts__account_id__post
      parameters:
      - required: true
        schema:
          type: integer
          title: Account Id
        name: account_id
        in: path
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/LegacyAccountIn'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LegacyAccountOut'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - http_basic: []
      - forwarded_http_basic: []
      - session_cookie: []
      - session_header: []
      - api_token_header: []
      - bearer_token: []
  /3.0/objects/keywordgroups/{account_id}:
    get:
      tags:
      - legacy
      summary: This call returns the list of keywordgroups an account can access
      operationId: get_account_keywordgroups_3_0_objects_keywordgroups__account_id__get
      parameters:
      - required: true
        schema:
          type: integer
          title: Account Id
        name: account_id
        in: path
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LegacyKeywordGroupOut'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - http_basic: []
      - forwarded_http_basic: []
      - session_cookie: []
      - session_header: []
      - api_token_header: []
      - bearer_token: []
  /3.0/objects/keywordgroups/{account_id}/{keyword_group_id}:
    get:
      tags:
      - legacy
      summary: This call returns a list of keywords within the give keyword group
      operationId: get_account_keywordgroup_detail_3_0_objects_keywordgroups__account_id___keyword_group_id__get
      parameters:
      - required: true
        schema:
          type: integer
          title: Account Id
        name: account_id
        in: path
      - required: true
        schema:
          type: integer
          title: Keyword Group Id
        name: keyword_group_id
        in: path
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LegacyKeywordGroupDetailOut'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - http_basic: []
      - forwarded_http_basic: []
      - session_cookie: []
      - session_header: []
      - api_token_header: []
      - bearer_token: []
  /latest3/objects/keywordgroups/{account_id}:
    get:
      tags:
      - legacy
      summary: This call returns the list of keywordgroups an account can access
      operationId: get_account_keywordgroups_latest3_objects_keywordgroups__account_id__get
      parameters:
      - required: true
        schema:
          type: integer
          title: Account Id
        name: account_id
        in: path
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LegacyKeywordGroupOut'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - http_basic: []
      - forwarded_http_basic: []
      - session_cookie: []
      - session_header: []
      - api_token_header: []
      - bearer_token: []
  /latest3/objects/keywordgroups/{account_id}/{keyword_group_id}:
    get:
      tags:
      - legacy
      summary: This call returns a list of keywords within the give keyword group
      operationId: get_account_keywordgroup_detail_latest3_objects_keywordgroups__account_id___keyword_group_id__get
      parameters:
      - required: true
        schema:
          type: integer
          title: Account Id
        name: account_id
        in: path
      - required: true
        schema:
          type: integer
          title: Keyword Group Id
        name: keyword_group_id
        in: path
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LegacyKeywordGroupDetailOut'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - http_basic: []
      - forwarded_http_basic: []
      - session_cookie: []
      - session_header: []
      - api_token_header: []
      - bearer_token: []
  /3.0/objects/domains:
    get:
      tags:
      - legacy
      summary: This call returns a list of primary domains for accounts that the user has access to.
      operationId: get_user_domains_3_0_objects_domains_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LegacyCompetitorDomainOut'
      security:
      - http_basic: []
      - forwarded_http_basic: []
      - session_cookie: []
      - session_header: []
      - api_token_header: []
      - bearer_token: []
  /3.0/objects/domains/{account_id}:
    get:
      tags:
      - legacy
      summary: This call returns a primary domain for given account id
      operationId: get_account_domain_3_0_objects_domains__account_id__get
      parameters:
      - required: true
        schema:
          type: integer
          title: Account Id
        name: account_id
        in: path
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LegacyCompetitorDomainOut'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - http_basic: []
      - forwarded_http_basic: []
      - session_cookie: []
      - session_header: []
      - api_token_header: []
      - bearer_token: []
  /latest3/objects/domains:
    get:
      tags:
      - legacy
      summary: This call returns a list of primary domains for accounts that the user has access to.
      operationId: get_user_domains_latest3_objects_domains_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LegacyCompetitorDomainOut'
      security:
      - http_basic: []
      - forwarded_http_basic: []
      - session_cookie: []
      - session_header: []
      - api_token_header: []
      - bearer_token: []
  /latest3/objects/domains/{account_id}:
    get:
      tags:
      - legacy
      summary: This call returns a primary domain for given account id
      operationId: get_account_domain_latest3_objects_domains__account_id__get
      parameters:
      - required: true
        schema:
          type: integer
          title: Account Id
        name: account_id
        in: path
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LegacyCompetitorDomainOut'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - http_basic: []
      - forwarded_http_basic: []
      - session_cookie: []
      - session_header: []
      - api_token_header: []
      - bearer_token: []
  /3.0/objects/competitors/{account_id}:
    get:
      tags:
      - legacy
      summary: This call returns a competitors for given account id
      operationId: get_account_competitors_3_0_objects_competitors__account_id__get
      parameters:
      - required: true
        schema:
          type: integer
          title: Account Id
        name: account_id
        in: path
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LegacyCompetitorDomainOut'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - http_basic: []
      - forwarded_http_basic: []
      - session_cookie: []
      - session_header: []
      - api_token_header: []
      - bearer_token: []
  /latest3/objects/competitors/{account_id}:
    get:
      tags:
      - legacy
      summary: This call returns a competitors for given account id
      operationId: get_account_competitors_latest3_objects_competitors__account_id__get
      parameters:
      - required: true
        schema:
          type: integer
          title: Account Id
        name: account_id
        in: path
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LegacyCompetitorDomainOut'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - http_basic: []
      - forwarded_http_basic: []
      - session_cookie: []
      - session_header: []
      - api_token_header: []
      - bearer_token: []
  /3.0/objects/keywords/{account_id}:
    get:
      tags:
      - legacy
      summary: This call returns a list of keywords of the given account
      operationId: get_account_keywords_3_0_objects_keywords__account_id__get
      parameters:
      - required: true
        schema:
          type: integer
          title: Account Id
        name: account_id
        in: path
      - required: false
        schema:
          type: integer
          title: Offset
          default: 0
        name: offset
        in: query
      - required: false
        schema:
          type: integer
          title: Count
          default: 5000
        name: count
        in: query
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LegacyKeywordOut'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - http_basic: []
      - forwarded_http_basic: []
      - session_cookie: []
      - session_header: []
      - api_token_header: []
      - bearer_token: []
  /latest3/objects/keywords/{account_id}:
    get:
      tags:
      - legacy
      summary: This call returns a list of keywords of the given account
      operationId: get_account_keywords_latest3_objects_keywords__account_id__get
      parameters:
      - required: true
        schema:
          type: integer
          title: Account Id
        name: account_id
        in: path
      - required: false
        schema:
          type: integer
          title: Offset
          default: 0
        name: offset
        in: query
      - required: false
        schema:
          type: integer
          title: Count
          default: 5000
        name: count
        in: query
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LegacyKeywordOut'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - http_basic: []
      - forwarded_http_basic: []
      - session_cookie: []
      - session_header: []
      - api_token_header: []
      - bearer_token: []
  /3.0/objects/time/{account_id}/{time_frequency}/{day}:
    get:
      tags:
      - legacy
      summary: This call returns the time value for a given time frequency and day
      operationId: get_time_value_3_0_objects_time__account_id___time_frequency___day__get
      parameters:
      - required: true
        schema:
          type: integer
          title: Account Id
        name: account_id
        in: path
      - required: true
        schema:
          $ref: '#/components/schemas/TimeTimeStringType'
        name: time_frequency
        in: path
      - required: true
        schema:
          type: integer
          maximum: 99991231.0
          minimum: 19600101.0
          title: The day number in YYYYMMDD format
        name: day
        in: path
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LegacyTimeFrequencyOut'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - http_basic: []
      - forwarded_http_basic: []
      - session_cookie: []
      - session_header: []
      - api_token_header: []
      - bearer_token: []
  /latest3/objects/time/{account_id}/{time_frequency}/{day}:
    get:
      tags:
      - legacy
      summary: This call returns the time value for a given time frequency and day
      operationId: get_time_value_latest3_objects_time__account_id___time_frequency___day__get
      parameters:
      - required: true
        schema:
          type: integer
          title: Account Id
        name: account_id
        in: path
      - required: true
        schema:
          $ref: '#/components/schemas/TimeTimeStringType'
        name: time_frequency
        in: path
      - required: true
        schema:
          type: integer
          maximum: 99991231.0
          minimum: 19600101.0
          title: The day number in YYYYMMDD format
        name: day
        in: path
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LegacyTimeFrequencyOut'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - http_basic: []
      - forwarded_http_basic: []
      - session_cookie: []
      - session_header: []
      - api_token_header: []
      - bearer_token: []
  /3.0/objects/datacube_searchengines/{account_id}:
    get:
      tags:
      - legacy
      summary: This call returns the list of all the datacube search engines for given account_id
      operationId: get_account_datacube_searchengines_3_0_objects_datacube_searchengines__account_id__get
      parameters:
      - required: true
        schema:
          type: integer
          title: Account Id
        name: account_id
        in: path
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LegacyDatacubeSearchenginesOut'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - http_basic: []
      - forwarded_http_basic: []
      - session_cookie: []
      - session_header: []
      - api_token_header: []
      - bearer_token: []
  /latest3/objects/datacube_searchengines/{account_id}:
    get:
      tags:
      - legacy
      summary: This call returns the list of all the datacube search engines for given account_id
      operationId: get_account_datacube_searchengines_latest3_objects_datacube_searchengines__account_id__get
      parameters:
      - required: true
        schema:
          type: integer
          title: Account Id
        name: account_id
        in: path
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LegacyDatacubeSearchenginesOut'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - http_basic: []
      - forwarded_http_basic: []
      - session_cookie: []
      - session_header: []
      - api_token_header: []
      - bearer_token: []
  /3.0/objects/searchengines/{account_id}:
    get:
      tags:
      - legacy
      summary: This call returns the list of all the search engines for given account_id
      operationId: get_account_searchengines_3_0_objects_searchengines__account_id__get
      parameters:
      - required: true
        schema:
          type: integer
          title: Account Id
        name: account_id
        in: path
      - required: false
        schema:
          type: integer
          title: Active
          default: 0
        name: active
        in: query
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LegacySearchenginesOut'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - http_basic: []
      - forwarded_http_basic: []
      - session_cookie: []
      - session_header: []
      - api_token_header: []
      - bearer_token: []
  /latest3/objects/searchengines/{account_id}:
    get:
      tags:
      - legacy
      summary: This call returns the list of all the search engines for given account_id
      operationId: get_account_searchengines_latest3_objects_searchengines__account_id__get
      parameters:
      - required: true
        schema:
          type: integer
          title: Account Id
        name: account_id
        in: path
      - required: false
        schema:
          type: integer
          title: Active
          default: 0
        name: active
        in: query
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LegacySearchenginesOut'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - http_basic: []
      - forwarded_http_basic: []
      - session_cookie: []
      - session_header: []
      - api_token_header: []
      - bearer_token: []
  /3.0/objects/query/{account_id}:
    post:
      tags:
      - legacy
      summary: This call returns the BUDD BQL query results (for internal use only)
      operationId: budd_bql_query_3_0_objects_query__account_id__post
      parameters:
      - required: true
        schema:
          type: integer
          title: Account Id
        name: account_id
        in: path
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - http_basic: []
      - forwarded_http_basic: []
      - session_cookie: []
      - session_header: []
      - api_token_header: []
      - bearer_token: []
  /latest3/objects/query/{account_id}:
    post:
      tags:
      - legacy
      summary: This call returns the BUDD BQL query results (for internal use only)
      operationId: budd_bql_query_latest3_objects_query__account_id__post
      parameters:
      - required: true
        schema:
          type: integer
          title: Account Id
        name: account_id
        in: path
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - http_basic: []
      - forwarded_http_basic: []
      - session_cookie: []
      - session_header: []
      - api_token_header: []
      - bearer_token: []
  /3.0/query/{account_id}:
    post:
      tags:
      - legacy
      summary: This call returns the BUDD BQL query results (for customers)
      operationId: budd_bql_query_3_0_query__account_id__post
      parameters:
      - required: true
        schema:
          type: integer
          title: Account Id
        name: account_id
        in: path
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - http_basic: []
      - forwarded_http_basic: []
      - session_cookie: []
      - session_header: []
      - api_token_header: []
      - bearer_token: []
  /latest3/query/{account_id}:
    post:
      tags:
      - legacy
      summary: This call returns the BUDD BQL query results (for customers)
      operationId: budd_bql_query_latest3_query__account_id__post
      parameters:
      - required: true
        schema:
          type: integer
          title: Account Id
        name: account_id
        in: path
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - http_basic: []
      - forwarded_http_basic: []
      - session_cookie: []
      - session_header: []
      - api_token_header: []
      - bearer_token: []
  /3.0/objects/qa_query/{account_id}:
    post:
      tags:
      - legacy
      summary: This call returns the BUDD BQL query results only for QA
      operationId: budd_bql_query_qa_3_0_objects_qa_query__account_id__post
      parameters:
      - required: true
        schema:
          type: integer
          title: Account Id
        name: account_id
        in: path
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - http_basic: []
      - forwarded_http_basic: []
      - session_cookie: []
      - session_header: []
      - api_token_header: []
      - bearer_token: []
  /latest3/objects/qa_query/{account_id}:
    post:
      tags:
      - legacy
      summary: This call returns the BUDD BQL query results only for QA
      operationId: budd_bql_query_qa_latest3_objects_qa_query__account_id__post
      parameters:
      - required: true
        schema:
          type: integer
          title: Account Id
        name: account_id
        in: path
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - http_basic: []
      - forwarded_http_basic: []
      - session_cookie: []
      - session_header: []
      - api_token_header: []
      - bearer_token: []
components:
  schemas:
    LegacyKeywordGroupOut:
      properties:
        keywordgroups:
          items:
            $ref: '#/components/schemas/LegacyKeywordGroupShortOut'
          type: array
          title: Keywordgroups
      type: object
      required:
      - keywordgroups
      title: LegacyKeywordGroupOut
    LegacyKeywordGroupDetailOut:
      properties:
        keywordgroups:
          items:
            $ref: '#/components/schemas/LegacyKeywordGroupDetailShortOut'
          type: array
          title: Keywordgroups
      type: object
      required:
      - keywordgroups
      title: LegacyKeywordGroupDetailOut
    LegacyKeywordGroupShortOut:
      properties:
        id:
          type: string
          title: Id
        keywordgroup:
          type: string
          title: Keywordgroup
      type: object
      required:
      - id
      - keywordgroup
      title: LegacyKeywordGroupShortOut
    TimeTimeStringType:
      type: string
      enum:
      - daily
      - weekly
      - monthly
      - quarterly
      - yearly
      - fiscal_weekly
      - fiscal_monthly
      - fiscal_quarterly
      - fiscal_yearly
      title: TimeTimeStringType
      description: An enumeration.
    LegacyKeywordGroupDetailKeywordShortOut:
      properties:
        id:
          type: string
          title: Id
        name:
          type: string
          title: Name
      type: object
      required:
      - id
      - name
      title: LegacyKeywordGroupDetailKeywordShortOut
    LegacyDatacubeSearchenginesOut:
      properties:
        searchengines:
          items:
            $ref: '#/components/schemas/LegacyDatacubeSearchenginesShortOut'
          type: array
          title: Searchengines
      type: object
      required:
      - searchengines
      title: LegacyDatacubeSearchenginesOut
    LegacySearchenginesOut:
      properties:
        searchengines:
          items:
            $ref: '#/components/schemas/LegacySearchenginesShortOut'
          type: array
          title: Searchengines
      type: object
      required:
      - searchengines
      title: LegacySearchenginesOut
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    LegacyTimeFrequencyOut:
      properties:
        time_value:
          type: string
          title: Time Value
        day_value:
          type: string
          title: Day Value
        time_frequency:
          $ref: '#/components/schemas/TimeTimeStringType'
      type: object
      required:
      - time_value
      - day_value
      - time_frequency
      title: LegacyTimeFrequencyOut
    LegacyAccountsListOut:
      properties:
        accounts:
          items:
            $ref: '#/components/schemas/LegacyAccountShortOut'
          type: array
          title: Accounts
      type: object
      required:
      - accounts
      title: LegacyAccountsListOut
    LegacySearchenginesShortOut:
      properties:
        display_name:
          type: string
          title: Display Name
        country:
          type: string
          title: Country
        searchengine:
          type: string
          title: Searchengine
        location:
          type: string
          title: Location
        device_type:
          type: string
          title: Device Type
        device_type_id:
          type: string
          title: Device Type Id
        searchengine_group_id:
          type: string
          title: Searchengine Group Id
        id:
          type: string
          title: Id
      type: object
      required:
      - display_name
      - country
      - searchengine
      - location
      - device_type
      - device_type_id
      - searchengine_group_id
      - id
      title: LegacySearchenginesShortOut
    LegacyAccountShortOut:
      properties:
        id:
          type: string
          title: Id
        account:
          type: string
          title: Account
      type: object
      required:
      - id
      - account
      title: LegacyAccountShortOut
    LegacyKeywordOut:
      properties:
        count:
          type: string
          title: Count
        total:
          type: string
          title: Total
   

# --- truncated at 32 KB (38 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/brightedge/refs/heads/main/openapi/brightedge-legacy-api-openapi.yml