Bright Data SERP API

Real-time SERP data from Google, Bing, Yandex, and DuckDuckGo across 31 languages and 195 countries. Supports organic, news, images, videos, shopping, jobs, hotels, flights, lens, trends, reviews, maps, and AI Overview result types. Submit asynchronous requests via `/serp/req` and poll `/serp/get_result`, or stream synchronously over the proxy on port 33335. Geolocation, device, browser, pagination, and localization parameters supported.

Documentation

Specifications

Other Resources

🔗
APIsJSON
https://raw.githubusercontent.com/api-evangelist/bright-data/refs/heads/main/apis.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/bright-data/refs/heads/main/arazzo/bright-data-dataset-marketplace-deliver-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/bright-data/refs/heads/main/arazzo/bright-data-deep-lookup-enrich-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/bright-data/refs/heads/main/arazzo/bright-data-deep-lookup-research-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/bright-data/refs/heads/main/arazzo/bright-data-provision-unlocker-zone-and-scrape-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/bright-data/refs/heads/main/arazzo/bright-data-provision-zone-ips-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/bright-data/refs/heads/main/arazzo/bright-data-proxy-port-provision-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/bright-data/refs/heads/main/arazzo/bright-data-serp-search-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/bright-data/refs/heads/main/arazzo/bright-data-web-archive-search-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/bright-data/refs/heads/main/arazzo/bright-data-web-scraper-deliver-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/bright-data/refs/heads/main/arazzo/bright-data-web-scraper-job-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/bright-data/refs/heads/main/arazzo/bright-data-web-scraper-monitor-cancel-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/bright-data/refs/heads/main/arazzo/bright-data-web-scraper-rerun-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/bright-data/refs/heads/main/arazzo/bright-data-web-unlocker-async-workflow.yml

OpenAPI Specification

bright-data-serp-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Bright Data Account Management Access SERP API
  description: 'Programmatic management of Bright Data zones (proxy pools and product entitlements), IP

    allocations, access control (whitelists, blacklists, domain permissions), passwords, and

    billing/bandwidth reporting. Authentication uses a Bearer API token issued from the control panel.

    '
  version: '1.0'
  contact:
    name: Bright Data
    url: https://docs.brightdata.com
servers:
- url: https://api.brightdata.com
  description: Production
security:
- BearerAuth: []
tags:
- name: SERP
  description: Submit and retrieve SERP requests.
paths:
  /serp/req:
    post:
      summary: Submit Asynchronous SERP Request
      operationId: submitSerpRequest
      tags:
      - SERP
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - zone
              - url
              properties:
                zone:
                  type: string
                url:
                  type: string
                  format: uri
                  description: Constructed search-engine URL (e.g. https://www.google.com/search?q=pizza).
                country:
                  type: string
                language:
                  type: string
                device:
                  type: string
                  enum:
                  - desktop
                  - mobile
                  - tablet
                browser:
                  type: string
                  enum:
                  - chrome
                  - firefox
                  - safari
                format:
                  type: string
                  enum:
                  - json
                  - raw
                  - html
                callback_url:
                  type: string
                  format: uri
      responses:
        '200':
          description: Submitted.
          content:
            application/json:
              schema:
                type: object
                properties:
                  response_id:
                    type: string
  /serp/get_result:
    get:
      summary: Get Asynchronous SERP Result
      operationId: getSerpResult
      tags:
      - SERP
      parameters:
      - name: response_id
        in: query
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Parsed SERP payload.
          content:
            application/json:
              schema:
                type: object
                properties:
                  organic:
                    type: array
                    items:
                      type: object
                      additionalProperties: true
                  ads:
                    type: array
                    items:
                      type: object
                      additionalProperties: true
                  related:
                    type: array
                    items:
                      type: object
                      additionalProperties: true
                  ai_overview:
                    type: object
                    additionalProperties: true
                  knowledge:
                    type: object
                    additionalProperties: true
                  general:
                    type: object
                    properties:
                      query:
                        type: string
                      language:
                        type: string
                      country:
                        type: string
        '202':
          description: Not yet ready.
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer