Bright Data · Arazzo Workflow

Bright Data Deep Lookup Trigger and Enrich Columns

Version 1.0.0

Trigger a Deep Lookup, wait for it to finish, and enrich its columns.

1 workflow 1 source API 1 provider
View Spec View on GitHub Web DataWeb ScrapingProxyResidential ProxyDatacenter ProxyISP ProxyMobile ProxySERPWeb UnlockerScraping BrowserDataset MarketplaceMCPAI AgentsArazzoWorkflows

Provider

bright-data

Workflows

trigger-and-enrich
Trigger a Deep Lookup, poll until ready, then enrich its columns.
Triggers a lookup request, polls the request status until it is ready, and then queues enrichment of the requested columns on the result set.
3 steps inputs: apiToken, category, columns, query outputs: enrichResult, requestId
1
triggerLookup
Trigger the Deep Lookup request, returning a request id used to poll and enrich.
2
pollStatus
Poll the request status until it reaches a terminal state. A ready status means the columns can be enriched.
3
enrichColumns
Queue an enrichment pass that fills in the requested columns on the delivered result set.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Bright Data Deep Lookup Trigger and Enrich Columns
  summary: Trigger a Deep Lookup, wait for it to finish, and enrich its columns.
  description: >-
    A column-enrichment pattern for Deep Lookup. The workflow triggers a lookup
    request, polls its status until it reaches a terminal state, and then queues
    an enrichment pass that fills in additional columns on the delivered
    results. Every step spells out its request inline so the flow can be read and
    executed without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: lookupApi
  url: ../openapi/bright-data-lookup-api-openapi.yml
  type: openapi
workflows:
- workflowId: trigger-and-enrich
  summary: Trigger a Deep Lookup, poll until ready, then enrich its columns.
  description: >-
    Triggers a lookup request, polls the request status until it is ready, and
    then queues enrichment of the requested columns on the result set.
  inputs:
    type: object
    required:
    - apiToken
    - query
    - columns
    properties:
      apiToken:
        type: string
        description: Bright Data API token used as a Bearer credential.
      query:
        type: string
        description: Natural-language or structured research prompt.
      category:
        type: string
        description: Entity category to research (company, professional, mixed).
      columns:
        type: array
        description: Names of the columns to enrich on the result set.
        items:
          type: string
  steps:
  - stepId: triggerLookup
    description: >-
      Trigger the Deep Lookup request, returning a request id used to poll and
      enrich.
    operationId: triggerDeepLookup
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.apiToken"
    requestBody:
      contentType: application/json
      payload:
        query: $inputs.query
        category: $inputs.category
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      requestId: $response.body#/request_id
  - stepId: pollStatus
    description: >-
      Poll the request status until it reaches a terminal state. A ready status
      means the columns can be enriched.
    operationId: getDeepLookupStatus
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.apiToken"
    - name: request_id
      in: path
      value: $steps.triggerLookup.outputs.requestId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      status: $response.body#/status
    onSuccess:
    - name: lookupReady
      type: goto
      stepId: enrichColumns
      criteria:
      - context: $response.body
        condition: $.status == "ready"
        type: jsonpath
    - name: keepPolling
      type: goto
      stepId: pollStatus
      criteria:
      - context: $response.body
        condition: $.status == "pending" || $.status == "running"
        type: jsonpath
  - stepId: enrichColumns
    description: >-
      Queue an enrichment pass that fills in the requested columns on the
      delivered result set.
    operationId: enrichDeepLookup
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.apiToken"
    - name: request_id
      in: path
      value: $steps.triggerLookup.outputs.requestId
    requestBody:
      contentType: application/json
      payload:
        columns: $inputs.columns
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      enrichResult: $response.body
  outputs:
    requestId: $steps.triggerLookup.outputs.requestId
    enrichResult: $steps.enrichColumns.outputs.enrichResult

Work with this as data

Every workflow 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 arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • 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 workflow
curl "https://apis.io/api/v1/arazzo/bright-data-deep-lookup-enrich-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?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.