> ## Documentation Index
> Fetch the complete documentation index at: https://nango-wari-migrated-bigcommerce-docs.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Apollo

> Integrate your application with the Apollo API

## 🚀 Quickstart

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

<Steps>
  <Step title="Create the integration">
    In Nango ([free signup](https://app.nango.dev)), go to [Integrations](https://app.nango.dev/dev/integrations) -> *Configure New Integration* -> *Apollo*.
  </Step>

  <Step title="Authorize Apollo">
    Go to [Connections](https://app.nango.dev/dev/connections) -> *Add Test Connection* -> *Authorize*, then enter your Apollo API key. Later, you'll let your users do the same directly from your app.
  </Step>

  <Step title="Call the Apollo API">
    Let's make your first request to the Apollo API. Replace the placeholders below with your [secret key](https://app.nango.dev/dev/environment-settings), [integration ID](https://app.nango.dev/dev/integrations), and [connection ID](https://app.nango.dev/dev/connections):

    <Tabs>
      <Tab title="cURL">
        ```bash theme={null}
        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>"
        ```
      </Tab>

      <Tab title="Node">
        Install Nango's backend SDK with `npm i @nangohq/node`. Then run:

        ```typescript theme={null}
        import { Nango } from '@nangohq/node';

        const nango = new Nango({ secretKey: '<NANGO-SECRET-KEY>' });

        const res = await nango.get({
            endpoint: '/v1/organizations/enrich',
            providerConfigKey: '<INTEGRATION-ID>',
            connectionId: '<CONNECTION-ID>'
        });

        console.log(res.data);
        ```
      </Tab>
    </Tabs>

    Or fetch credentials with the [Node SDK](/reference/sdks/node#get-a-connection-with-credentials) or [API](/reference/api/connection/get).

    ✅ You're connected! Check the [Logs](https://app.nango.dev/dev/logs) tab in Nango to inspect requests.
  </Step>

  <Step title="Implement Nango in your app">
    Follow our [Auth implementation guide](/guides/primitives/auth) to integrate Nango in your app.

    To obtain your own production credentials, follow the setup guide linked below.
  </Step>
</Steps>

## 📚 Apollo Integration Guides

Nango maintained guides for common use cases.

* [How do I link my Apollo account?](/api-integrations/apollo/connect)\
  Learn how to obtain your Apollo API key and link your account

Official docs: [Apollo API docs](https://docs.apollo.io/reference)

## 🧩 Pre-built syncs & actions for Apollo

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

### Others

| Function name                  | Description                                                                                                                                                                                                                          | Type                                           | Source code                                                                                                                         |
| ------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ---------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- |
| `bulk-enrich-people`           | Bulk enrich people by emails or IDs. Supports up to 10 people per request.                                                                                                                                                           | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/apollo/actions/bulk-enrich-people.ts)           |
| `create-account`               | Create an account in Apollo.                                                                                                                                                                                                         | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/apollo/actions/create-account.ts)               |
| `create-contact`               | Create a contact in Apollo.                                                                                                                                                                                                          | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/apollo/actions/create-contact.ts)               |
| `create-opportunity`           | Create an opportunity in Apollo                                                                                                                                                                                                      | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/apollo/actions/create-opportunity.ts)           |
| `create-task`                  | Create a task in Apollo                                                                                                                                                                                                              | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/apollo/actions/create-task.ts)                  |
| `delete-account`               | Delete or archive an account in Apollo by setting its existence\_level to none                                                                                                                                                       | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/apollo/actions/delete-account.ts)               |
| `delete-contact`               | Delete or archive a contact in Apollo                                                                                                                                                                                                | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/apollo/actions/delete-contact.ts)               |
| `delete-opportunity`           | Archive (soft-delete) an opportunity in Apollo by marking it as closed.                                                                                                                                                              | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/apollo/actions/delete-opportunity.ts)           |
| `enrich-organization`          | Enrich an organization by domain or Apollo ID                                                                                                                                                                                        | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/apollo/actions/enrich-organization.ts)          |
| `enrich-person`                | Enrich a person by email or Apollo ID                                                                                                                                                                                                | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/apollo/actions/enrich-person.ts)                |
| `get-account`                  | Retrieve a single account from Apollo.                                                                                                                                                                                               | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/apollo/actions/get-account.ts)                  |
| `get-contact`                  | Retrieve a single contact from Apollo.                                                                                                                                                                                               | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/apollo/actions/get-contact.ts)                  |
| `get-opportunity`              | Retrieve a single opportunity from Apollo.                                                                                                                                                                                           | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/apollo/actions/get-opportunity.ts)              |
| `list-accounts`                | List accounts from Apollo.                                                                                                                                                                                                           | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/apollo/actions/list-accounts.ts)                |
| `list-contacts`                | List contacts from Apollo.                                                                                                                                                                                                           | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/apollo/actions/list-contacts.ts)                |
| `list-opportunities`           | List opportunities from Apollo.                                                                                                                                                                                                      | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/apollo/actions/list-opportunities.ts)           |
| `list-sequences`               | List sequences from Apollo.                                                                                                                                                                                                          | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/apollo/actions/list-sequences.ts)               |
| `list-tasks`                   | List tasks from Apollo                                                                                                                                                                                                               | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/apollo/actions/list-tasks.ts)                   |
| `list-users`                   | List users (team members) in the Apollo organisation.                                                                                                                                                                                | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/apollo/actions/list-users.ts)                   |
| `remove-contact-from-sequence` | Remove or stop one or more contacts from an Apollo sequence.                                                                                                                                                                         | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/apollo/actions/remove-contact-from-sequence.ts) |
| `search-organizations`         | Search Apollo organization records.                                                                                                                                                                                                  | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/apollo/actions/search-organizations.ts)         |
| `search-people`                | Search Apollo people records                                                                                                                                                                                                         | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/apollo/actions/search-people.ts)                |
| `update-account`               | Update an account in Apollo                                                                                                                                                                                                          | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/apollo/actions/update-account.ts)               |
| `update-contact`               | Update a contact in Apollo.                                                                                                                                                                                                          | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/apollo/actions/update-contact.ts)               |
| `update-opportunity`           | Update an opportunity in Apollo.                                                                                                                                                                                                     | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/apollo/actions/update-opportunity.ts)           |
| `update-task`                  | Update 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](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/apollo/actions/update-task.ts)                  |
| `accounts`                     | Sync accounts from Apollo                                                                                                                                                                                                            | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/apollo/syncs/accounts.ts)                       |
| `contacts`                     | Sync contacts from Apollo                                                                                                                                                                                                            | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/apollo/syncs/contacts.ts)                       |
| `opportunities`                | Sync opportunities from Apollo                                                                                                                                                                                                       | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/apollo/syncs/opportunities.ts)                  |
| `organization-search`          | Sync organizations matching saved Apollo filters                                                                                                                                                                                     | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/apollo/syncs/organization-search.ts)            |
| `sequences`                    | Sync sequences from Apollo.                                                                                                                                                                                                          | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/apollo/syncs/sequences.ts)                      |
| `tasks`                        | Sync tasks from Apollo.                                                                                                                                                                                                              | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/apollo/syncs/tasks.ts)                          |

***
