Apollo integration
Apollo provides CRM and lead generation capabilities, helping businesses…
- Provider
- apollo
- Category
- Crm
- Setup
- User-supplied API key
- Actions
- 48 available
Quick start
Call Apollo from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Apollo'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(
"APOLLO_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 Apollo 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
48 actions exposed via the
Apollo integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
APOLLO_ADD_CONTACTS_TO_SEQUENCE -
APOLLO_BULK_ORGANIZATION_ENRICHMENT -
APOLLO_BULK_PEOPLE_ENRICHMENT -
APOLLO_BULK_UPDATE_ACCOUNT_STAGE -
APOLLO_CREATE_ACCOUNT -
APOLLO_CREATE_BULK_ACCOUNTS -
APOLLO_CREATE_BULK_CONTACTS -
APOLLO_CREATE_CALL_RECORD -
APOLLO_CREATE_CONTACT -
APOLLO_CREATE_CUSTOM_FIELD -
APOLLO_CREATE_DEAL -
APOLLO_CREATE_TASK
Show all 48 actions
-
APOLLO_GET_ACCOUNT -
APOLLO_GET_AUTH_STATUS -
APOLLO_GET_CONTACT -
APOLLO_GET_DEAL -
APOLLO_GET_LABELS -
APOLLO_GET_OPPORTUNITY_STAGES -
APOLLO_GET_ORGANIZATION -
APOLLO_GET_ORGANIZATION_JOB_POSTINGS -
APOLLO_GET_TYPED_CUSTOM_FIELDS -
APOLLO_LIST_ACCOUNT_STAGES -
APOLLO_LIST_CONTACT_STAGES -
APOLLO_LIST_DEALS -
APOLLO_LIST_EMAIL_ACCOUNTS -
APOLLO_LIST_FIELDS -
APOLLO_LIST_USERS -
APOLLO_ORGANIZATION_ENRICHMENT -
APOLLO_ORGANIZATION_SEARCH -
APOLLO_PEOPLE_ENRICHMENT -
APOLLO_PEOPLE_SEARCH -
APOLLO_SEARCH_ACCOUNTS -
APOLLO_SEARCH_CALLS -
APOLLO_SEARCH_CONTACTS -
APOLLO_SEARCH_NEWS_ARTICLES -
APOLLO_SEARCH_OUTREACH_EMAILS -
APOLLO_SEARCH_SEQUENCES -
APOLLO_SEARCH_TASKS -
APOLLO_UPDATE_ACCOUNT -
APOLLO_UPDATE_ACCOUNT_OWNERS -
APOLLO_UPDATE_CALL_RECORD -
APOLLO_UPDATE_CONTACT -
APOLLO_UPDATE_CONTACT_OWNERSHIP -
APOLLO_UPDATE_CONTACTS_BULK -
APOLLO_UPDATE_CONTACT_STAGE -
APOLLO_UPDATE_CONTACT_STATUS_IN_SEQUENCE -
APOLLO_UPDATE_DEALS -
APOLLO_VIEW_API_USAGE_STATS
Build with Apollo
Open OverSkill, describe what you want to build, and reference Apollo in your prompt — the AI will wire up the integration automatically.