Data247 integration
Data247 is a simple, and secure on-demand data platform that provides…
- Provider
- data247
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 24 available
Quick start
Call Data247 from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Data247'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(
"DATA247_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 Data247 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
24 actions exposed via the
Data247 integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
DATA247_APPEND_EMAIL2 -
DATA247_APPEND_GENDER -
DATA247_APPEND_NAME -
DATA247_APPEND_PHONE -
DATA247_APPEND_PROFILE -
DATA247_APPEND_PROPERTY_DATA -
DATA247_APPEND_REVERSE_EMAIL -
DATA247_APPEND_REVERSE_PHONE -
DATA247_APPEND_REVERSE_ZIPCODE -
DATA247_APPEND_ZIPCODE2 -
DATA247_BALANCE_INQUIRY -
DATA247_CARRIER_TYPE
Show all 24 actions
-
DATA247_DNC_ADD -
DATA247_DNC_CHECK -
DATA247_DNC_REMOVE -
DATA247_LOCATE_IP_ADDRESS -
DATA247_LOOKUP_CARRIER_USA -
DATA247_LOOKUP_INTERNATIONAL_CARRIER -
DATA247_TEXT_AT -
DATA247_TRUST_PHONE -
DATA247_TRUST_USER_IDENTITY -
DATA247_VERIFY_EMAIL -
DATA247_VERIFY_PHONE -
DATA247_VERIFY_POSTAL_ADDRESS
Build with Data247
Open OverSkill, describe what you want to build, and reference Data247 in your prompt — the AI will wire up the integration automatically.