Developer docs

Diffbot integration

Diffbot provides AI-powered tools to extract and structure data from web pages,…

Updated June 2026 35 actions available

Provider
diffbot
Category
Other
Setup
User-supplied API key
Actions
35 available

Quick start

Call Diffbot from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Diffbot'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(
  "DIFFBOT_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 Diffbot 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

35 actions exposed via the Diffbot integration. Each maps to a callable slug — pass it to composio.execute(...) in your worker code.

Show all 35 actions
  • DIFFBOT_GET_ARTICLE
  • DIFFBOT_GET_BULK_DATA
  • DIFFBOT_GET_BULK_JOB_STATUS
  • DIFFBOT_GET_BULK_RESULTS
  • DIFFBOT_GET_BULK_SINGLE_RESULT
  • DIFFBOT_GET_CRAWL_DATA
  • DIFFBOT_GET_DISCUSSION
  • DIFFBOT_GET_EVENT
  • DIFFBOT_GET_IMAGE
  • DIFFBOT_GET_KG_COVERAGE_REPORT_BY_ID
  • DIFFBOT_GET_PRODUCT
  • DIFFBOT_GET_VIDEO
  • DIFFBOT_LIST_BULK_JOBS
  • DIFFBOT_LIST_BULK_JOBS_STATUS_FOR_TOKEN
  • DIFFBOT_LIST_CUSTOM_APIS
  • DIFFBOT_MANAGE_CRAWL
  • DIFFBOT_RESOLVE_LOST_ID
  • DIFFBOT_SEARCH
  • DIFFBOT_SEARCH_CRAWL_DATA
  • DIFFBOT_START_BULK
  • DIFFBOT_START_CRAWL
  • DIFFBOT_STOP_BULK_JOB
  • DIFFBOT_STOP_KG_BULK_JOB_BY_ID

Build with Diffbot

Open OverSkill, describe what you want to build, and reference Diffbot in your prompt — the AI will wire up the integration automatically.