Bright Data · Arazzo Workflow

Bright Data Provision an Unlocker Zone then Unlock a URL

Version 1.0.0

Create a Web Unlocker zone, confirm it, and run a synchronous unlock against it.

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

Provider

bright-data

Workflows

provision-zone-and-unlock
Create an unlocker zone, verify it, then synchronously unlock a URL.
Provisions a new Web Unlocker zone, reads it back to confirm the configuration, and runs a one-shot synchronous unlock request against it.
3 steps inputs: apiToken, country, url, zone outputs: unlocked, zoneName
1
createZone
Create a new zone of type unlocker that the unlock request will route through.
2
confirmZone
Read the zone back to confirm it exists and is not disabled before sending traffic through it.
3
unlockUrl
Submit the target URL for synchronous unblocking through the newly provisioned zone, returning the rendered response.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Bright Data Provision an Unlocker Zone then Unlock a URL
  summary: Create a Web Unlocker zone, confirm it, and run a synchronous unlock against it.
  description: >-
    An end-to-end onboarding pattern that spans account management and the Web
    Unlocker product. The workflow creates a new unlocker-type zone, reads it
    back to confirm it is enabled, and then submits a target URL for synchronous
    unblocking through the freshly provisioned zone. 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: unlockApi
  url: ../openapi/bright-data-unlock-api-openapi.yml
  type: openapi
- name: zonesApi
  url: ../openapi/bright-data-zones-api-openapi.yml
  type: openapi
workflows:
- workflowId: provision-zone-and-unlock
  summary: Create an unlocker zone, verify it, then synchronously unlock a URL.
  description: >-
    Provisions a new Web Unlocker zone, reads it back to confirm the
    configuration, and runs a one-shot synchronous unlock request against it.
  inputs:
    type: object
    required:
    - apiToken
    - zone
    - url
    properties:
      apiToken:
        type: string
        description: Bright Data API token used as a Bearer credential.
      zone:
        type: string
        description: Name for the new Web Unlocker zone.
      country:
        type: string
        description: Default country for the zone (ISO 3166-1 alpha-2).
      url:
        type: string
        description: Target URL to unblock once the zone is provisioned.
  steps:
  - stepId: createZone
    description: >-
      Create a new zone of type unlocker that the unlock request will route
      through.
    operationId: addZone
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.apiToken"
    requestBody:
      contentType: application/json
      payload:
        zone: $inputs.zone
        plan:
          type: unlocker
          country: $inputs.country
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      zoneName: $response.body#/zone
  - stepId: confirmZone
    description: >-
      Read the zone back to confirm it exists and is not disabled before sending
      traffic through it.
    operationId: getZone
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.apiToken"
    - name: zone
      in: query
      value: $steps.createZone.outputs.zoneName
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      disabled: $response.body#/disabled
  - stepId: unlockUrl
    description: >-
      Submit the target URL for synchronous unblocking through the newly
      provisioned zone, returning the rendered response.
    operationId: unlockSync
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.apiToken"
    requestBody:
      contentType: application/json
      payload:
        url: $inputs.url
        zone: $steps.createZone.outputs.zoneName
        country: $inputs.country
        format: json
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      unlocked: $response.body
  outputs:
    zoneName: $steps.createZone.outputs.zoneName
    unlocked: $steps.unlockUrl.outputs.unlocked

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-provision-unlocker-zone-and-scrape-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.