Skip to main content

Documentation Index

Fetch the complete documentation index at: https://nango.dev/docs/llms.txt

Use this file to discover all available pages before exploring further.

πŸš€ Quickstart

Connect to Apollo with Nango and see data flow in 2 minutes.
1

Create the integration

In Nango (free signup), go to Integrations -> Configure New Integration -> Apollo.
2

Authorize Apollo

Go to Connections -> Add Test Connection -> Authorize, then enter your Apollo API key. Later, you’ll let your users do the same directly from your app.
3

Call the Apollo API

Let’s make your first request to the Apollo API. Replace the placeholders below with your secret key, integration ID, and connection ID:
curl "https://api.nango.dev/proxy/v1/organizations/enrich" \
  -H "Authorization: Bearer <NANGO-SECRET-KEY>" \
  -H "Provider-Config-Key: <INTEGRATION-ID>" \
  -H "Connection-Id: <CONNECTION-ID>"
Or fetch credentials with the Node SDK or API.βœ… You’re connected! Check the Logs tab in Nango to inspect requests.
4

Implement Nango in your app

Follow our Auth implementation guide to integrate Nango in your app.To obtain your own production credentials, follow the setup guide linked below.

πŸ“š Apollo Integration Guides

Nango maintained guides for common use cases. Official docs: Apollo API docs

🧩 Pre-built syncs & actions for Apollo

Enable them in your dashboard. Extend and customize to fit your needs.

Accounts

Function nameDescriptionTypeSource code
create-accountCreate an account in Apollo.ActionπŸ”— Github
delete-accountDelete or archive an account in Apollo by setting its existence_level to noneActionπŸ”— Github
list-accountsList accounts from Apollo.ActionπŸ”— Github
update-accountUpdate an account in ApolloActionπŸ”— Github

Contacts

Function nameDescriptionTypeSource code
create-contactCreate a contact in Apollo.ActionπŸ”— Github
delete-contactDelete or archive a contact in ApolloActionπŸ”— Github
get-contactRetrieve a single contact from Apollo.ActionπŸ”— Github
list-contactsList contacts from Apollo.ActionπŸ”— Github
update-contactUpdate a contact in Apollo.ActionπŸ”— Github

Opportunities

Function nameDescriptionTypeSource code
create-opportunityCreate an opportunity in ApolloActionπŸ”— Github
delete-opportunityArchive (soft-delete) an opportunity in Apollo by marking it as closed.ActionπŸ”— Github
get-opportunityRetrieve a single opportunity from Apollo.ActionπŸ”— Github
list-opportunitiesList opportunities from Apollo.ActionπŸ”— Github

Organizations

Function nameDescriptionTypeSource code
enrich-organizationEnrich an organization by domain or Apollo IDActionπŸ”— Github
search-organizationsSearch Apollo organization records.ActionπŸ”— Github

People

Function nameDescriptionTypeSource code
bulk-enrich-peopleBulk enrich people by emails or IDs. Supports up to 10 people per request.ActionπŸ”— Github
enrich-personEnrich a person by email or Apollo IDActionπŸ”— Github
search-peopleSearch Apollo people recordsActionπŸ”— Github

Sequences

Function nameDescriptionTypeSource code
list-sequencesList sequences from Apollo.ActionπŸ”— Github
remove-contact-from-sequenceRemove or stop one or more contacts from an Apollo sequence.ActionπŸ”— Github

Tasks

Function nameDescriptionTypeSource code
create-taskCreate a task in ApolloActionπŸ”— Github
list-tasksList tasks from ApolloActionπŸ”— Github

Users

Function nameDescriptionTypeSource code
list-usersList users (team members) in the Apollo organisation.ActionπŸ”— Github

Others

Function nameDescriptionTypeSource code
get-accountRetrieve a single account from Apollo.ActionπŸ”— Github
update-opportunityUpdate an opportunity in Apollo.ActionπŸ”— Github
update-taskUpdate a task in Apollo. Note: Due to OAuth limitations, the original task cannot be directly modified or deleted. A new task is created with the updated fields, and the original task should be manually deleted in the Apollo UI.ActionπŸ”— Github
accountsSync accounts from ApolloSyncπŸ”— Github
contactsSync contacts from ApolloSyncπŸ”— Github
opportunitiesSync opportunities from ApolloSyncπŸ”— Github
organization-searchSync organizations matching saved Apollo filtersSyncπŸ”— Github
sequencesSync sequences from Apollo.SyncπŸ”— Github
tasksSync tasks from Apollo.SyncπŸ”— Github