Bright Data Lookup API

The Lookup API from Bright Data — 6 operation(s) for lookup.

Operations 6

POST /deep_lookup/trigger Trigger a Deep Lookup Request #
POST /deep_lookup/preview Preview a Deep Lookup Query #
POST /deep_lookup/enhance_query Enhance a Deep Lookup Query #
GET /deep_lookup/request/{request_id}/status Get Deep Lookup Status #
GET /deep_lookup/request/{request_id}/download Download Deep Lookup Results #
POST /deep_lookup/request/{request_id}/enrich Enrich Deep Lookup Columns #

Documentation

Specifications

Schemas & Data

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/bright-data-lookup-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

bright-data-lookup-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Bright Data Deep Lookup API
  description: 'Deep Lookup is an entity-research API that finds companies and professionals across 1,000+

    public sources with 95%+ accuracy. Submit a natural-language description or structured query

    via `POST /trigger`, preview row counts and shape with `/preview`, optimize the query with

    `/enhance_query`, enrich existing columns with `/request/{id}/enrich`, monitor with `/status`,

    and download results once ready. Billed per delivered result.

    '
  version: '1.0'
  contact:
    name: Bright Data
    url: https://docs.brightdata.com
servers:
- url: https://api.brightdata.com
  description: Production
security:
- BearerAuth: []
tags:
- name: Lookup
paths:
  /deep_lookup/trigger:
    post:
      summary: Trigger a Deep Lookup Request
      operationId: triggerDeepLookup
      tags:
      - Lookup
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - query
              properties:
                query:
                  type: string
                  description: Natural-language or structured search prompt.
                category:
                  type: string
                  enum:
                  - company
                  - professional
                  - mixed
                limit:
                  type: integer
                output:
                  type: array
                  items:
                    type: string
      responses:
        '200':
          description: Triggered.
          content:
            application/json:
              schema:
                type: object
                properties:
                  request_id:
                    type: string
  /deep_lookup/preview:
    post:
      summary: Preview a Deep Lookup Query
      operationId: previewDeepLookup
      tags:
      - Lookup
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - query
              properties:
                query:
                  type: string
      responses:
        '200':
          description: Preview.
          content:
            application/json:
              schema:
                type: object
                properties:
                  estimated_rows:
                    type: integer
                  sample:
                    type: array
                    items:
                      type: object
                      additionalProperties: true
  /deep_lookup/enhance_query:
    post:
      summary: Enhance a Deep Lookup Query
      operationId: enhanceDeepLookupQuery
      tags:
      - Lookup
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - query
              properties:
                query:
                  type: string
      responses:
        '200':
          description: Enhanced query.
          content:
            application/json:
              schema:
                type: object
                properties:
                  enhanced_query:
                    type: string
                  suggestions:
                    type: array
                    items:
                      type: string
  /deep_lookup/request/{request_id}/status:
    parameters:
    - name: request_id
      in: path
      required: true
      schema:
        type: string
    get:
      summary: Get Deep Lookup Status
      operationId: getDeepLookupStatus
      tags:
      - Lookup
      responses:
        '200':
          description: Status.
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                    - pending
                    - running
                    - ready
                    - failed
                  rows:
                    type: integer
  /deep_lookup/request/{request_id}/download:
    parameters:
    - name: request_id
      in: path
      required: true
      schema:
        type: string
    get:
      summary: Download Deep Lookup Results
      operationId: downloadDeepLookup
      tags:
      - Lookup
      parameters:
      - name: format
        in: query
        schema:
          type: string
          enum:
          - json
          - ndjson
          - csv
      responses:
        '200':
          description: Results.
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  additionalProperties: true
  /deep_lookup/request/{request_id}/enrich:
    parameters:
    - name: request_id
      in: path
      required: true
      schema:
        type: string
    post:
      summary: Enrich Deep Lookup Columns
      operationId: enrichDeepLookup
      tags:
      - Lookup
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                columns:
                  type: array
                  items:
                    type: string
      responses:
        '200':
          description: Enrichment queued.
          content:
            application/json:
              schema:
                type: object
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer