Bright Data integration
Bright Data provides the world's #1 web data platform with Web Unlocker for…
- Provider
- brightdata
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 10 available
Quick start
Call Bright Data from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Bright Data's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"BRIGHTDATA_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
End-users supply their own Bright Data API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.
Available actions
10 actions exposed via the
Bright Data integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
BRIGHTDATA_CRAWL_API -
BRIGHTDATA_DATASET_LIST -
BRIGHTDATA_FILTER_DATASET -
BRIGHTDATA_GET_LIST_OF_AVAILABLE_CITIES -
BRIGHTDATA_GET_LIST_OF_AVAILABLE_COUNTRIES -
BRIGHTDATA_GET_SNAPSHOT_RESULTS -
BRIGHTDATA_GET_SNAPSHOT_STATUS -
BRIGHTDATA_LIST_WEB_UNLOCKER_ZONES -
BRIGHTDATA_SERP_SEARCH -
BRIGHTDATA_WEB_UNLOCKER
Build with Bright Data
Open OverSkill, describe what you want to build, and reference Bright Data in your prompt — the AI will wire up the integration automatically.