KosmoKrator

sales

Apollo.io CLI for CI

Use the Apollo.io CLI for CI with headless JSON commands, schema discovery, credentials, and permission controls.

6 functions 6 read 0 write API key auth

Apollo.io CLI for CI

Run integration calls from CI jobs with JSON output, explicit credentials, and predictable exit status.

Use this shape when a pipeline needs to read or update an external service. The Apollo.io CLI uses the same integration registry as the TUI, Lua runtime, and MCP gateway, but returns predictable command output for automation.

Command Shape

# Apollo.io CLI for CI
kosmokrator integrations:configure apollo --set api_key="$APOLLO_API_KEY" --enable --read allow --write ask --json
kosmo integrations:call apollo.apollo_search_contacts '{"q":"example_q","page":1,"per_page":1}' --json

Discovery Before Execution

Agents and scripts can inspect Apollo.io docs and schemas before choosing a function.

kosmo integrations:docs apollo --json
kosmo integrations:docs apollo.apollo_search_contacts --json
kosmo integrations:schema apollo.apollo_search_contacts --json
kosmo integrations:search "Apollo.io" --json
kosmo integrations:list --json

Useful Apollo.io CLI Functions

FunctionTypeParametersDescription
apollo.apollo_search_contacts Read q, page, per_page Search for people in Apollo by name, email, or keyword. Returns a paginated list of contacts with profile details including name, title, company, email, phone, and social profiles.
apollo.apollo_get_contact Read id Retrieve full details for a specific contact in Apollo by their person ID. Returns comprehensive profile data including employment history, emails, phone numbers, and social profiles.
apollo.apollo_enrich Read email, name Enrich a contact by matching on email address and/or name. Returns enriched profile data including title, company, social profiles, and contact details. Provide at least an email or a name.
apollo.apollo_list_organizations Read page, per_page List organizations from your Apollo account. Returns paginated results with company details including name, website, industry, employee count, and revenue.
apollo.apollo_get_organization Read id Retrieve full details for a specific organization in Apollo by its ID. Returns comprehensive company data including industry, employee count, revenue, tech stack, locations, and key contacts.
apollo.apollo_get_current_user Read none Retrieve the authenticated Apollo user's profile. Returns account information including name, email, plan type, and credit usage.

Automation Notes

Related Apollo.io CLI Pages