Developer docs

Interzoid integration

Interzoid offers APIs for data matching, verification, and enrichment, allowing…

Updated June 2026 30 actions available

Provider
interzoid
Category
Analytics
Setup
User-supplied API key
Actions
30 available

Quick start

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

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

Show all 30 actions
  • INTERZOID_GET_EXECUTIVE_PROFILE
  • INTERZOID_GET_FULL_NAME_MATCH
  • INTERZOID_GET_FULL_NAME_MATCH_SCORE
  • INTERZOID_GET_GLOBAL_ADDRESS_MATCH
  • INTERZOID_GET_GLOBAL_PAGE_LOAD_PERFORMANCE
  • INTERZOID_GET_GLOBAL_WEATHER
  • INTERZOID_GET_IP_PROFILE
  • INTERZOID_GET_LICENSE
  • INTERZOID_GET_NAME_ORIGIN
  • INTERZOID_GET_ORG_MATCH_SCORE
  • INTERZOID_GET_ORG_STANDARD
  • INTERZOID_GET_PARENT_COMPANY_INFO
  • INTERZOID_GET_PHONE_PROFILE
  • INTERZOID_GET_PRODUCT_MATCH
  • INTERZOID_GET_REMAINING_CREDITS
  • INTERZOID_GET_WEATHER_ZIPCODE
  • INTERZOID_IDENTIFY_LANGUAGE
  • INTERZOID_TRANSLATE_TO_ANY

Build with Interzoid

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