# Apollo (API Key) — Pipedream Connect

> The leading AI Sales Platform

- API slug: `apollo_io` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: CRM
- Website: https://www.apollo.io
- This page (HTML): https://pipedream.com/apps/apollo-io
- Tools: 27 actions · 4 triggers

## Connect via MCP (recommended)

- Endpoint: `https://remote.mcp.pipedream.net/v3`
- Headers: `Authorization: Bearer <token>` · `x-pd-project-id` · `x-pd-environment` · `x-pd-external-user-id` · `x-pd-app-slug: apollo_io`

```ts
import { Client } from "@modelcontextprotocol/sdk/client/index.js"
import { StreamableHTTPClientTransport } from "@modelcontextprotocol/sdk/client/streamableHttp.js"
import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const accessToken = await pd.rawAccessToken

const transport = new StreamableHTTPClientTransport(
  new URL("https://remote.mcp.pipedream.net/v3"),
  {
    requestInit: {
      headers: {
        Authorization: `Bearer ${accessToken}`,
        "x-pd-project-id": process.env.PIPEDREAM_PROJECT_ID!,
        "x-pd-environment": "production",
        "x-pd-external-user-id": "{external_user_id}", // any stable ID for this user in your system
        "x-pd-app-slug": "apollo_io",
      },
    },
  },
)

const mcp = new Client({ name: "my-agent", version: "1.0.0" })
await mcp.connect(transport)

const { tools } = await mcp.listTools()

// e.g. run Add Contacts to Sequence:
const result = await mcp.callTool({
  name: "apollo_io-add-contacts-to-sequence",
  arguments: {
    sequenceId: "Sequence ID",
    contactIds: ["Contact IDs"],
  },
})
```

Docs: [MCP guide](https://pipedream.com/docs/connect/mcp/developers.md)

## API proxy

For a Apollo (API Key) endpoint with no pre-built tool, the proxy forwards your request with the connected user's credentials attached.

```bash
# The path segment is the target URL, URL-safe base64 encoded:
# https://api.apollo.io/v1/auth/health

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9hcGkuYXBvbGxvLmlvL3YxL2F1dGgvaGVhbHRo?external_user_id={external_user_id}&account_id=apn_xxxxxxx" \
  -H "Authorization: Bearer {access_token}" \
  -H "x-pd-environment: production"
```

Docs: [API proxy guide](https://pipedream.com/docs/connect/api-proxy.md)

## SDK

```ts
import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "apollo_io-add-contacts-to-sequence",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    apollo_io: { authProvisionId: "apn_xxxxxxx" },
    sequenceId: "Sequence ID",
    contactIds: ["Contact IDs"],
  },
})
```

Docs: [Managed auth guide](https://pipedream.com/docs/connect/managed-auth/quickstart.md) · [Tools guide](https://pipedream.com/docs/connect/components.md)

## Actions (27)

### `apollo_io-add-contacts-to-sequence` — Add Contacts to Sequence (Write)

Adds one or more contacts to a sequence in Apollo.io. See the documentation

Full schema: https://pipedream.com/apps/apollo-io/actions/add-contacts-to-sequence.md

### `apollo_io-create-account` — Create Account (Write)

Creates a new account in Apollo.io. See the documentation

Full schema: https://pipedream.com/apps/apollo-io/actions/create-account.md

### `apollo_io-create-contact` — Create Contact (Write)

Creates a new contact in Apollo.io. See the documentation

Full schema: https://pipedream.com/apps/apollo-io/actions/create-contact.md

### `apollo_io-create-opportunity` — Create Opportunity (Write)

Creates a new opportunity in Apollo.io. See the documentation

Full schema: https://pipedream.com/apps/apollo-io/actions/create-opportunity.md

### `apollo_io-create-update-contact` — Create Or Update Contact (Write)

Creates or updates a specific contact. If the contact email already exists, it's updated. Otherwise, a new contact is created. See the documentation

Full schema: https://pipedream.com/apps/apollo-io/actions/create-update-contact.md

### `apollo_io-get-opportunity` — Get Opportunity (Read-only)

Gets a specific opportunity in Apollo.io. See the documentation

Full schema: https://pipedream.com/apps/apollo-io/actions/get-opportunity.md

### `apollo_io-get-organization` — Get Organization (Read-only)

Fetch a single organization from Apollo by its ID. Requires a master API key. Use Search For Organizations to discover IDs. See the documentation

Full schema: https://pipedream.com/apps/apollo-io/actions/get-organization.md

### `apollo_io-list-account-id-options` — List Account ID Options (Read-only)

Retrieves available options for the Account ID field.

Full schema: https://pipedream.com/apps/apollo-io/actions/list-account-id-options.md

### `apollo_io-list-contact-id-options` — List Contact ID Options (Read-only)

Retrieves available options for the Contact ID field.

Full schema: https://pipedream.com/apps/apollo-io/actions/list-contact-id-options.md

### `apollo_io-list-email-account-id-options` — List Email Account ID Options (Read-only)

Retrieves available options for the Email Account ID field.

Full schema: https://pipedream.com/apps/apollo-io/actions/list-email-account-id-options.md

### `apollo_io-list-label-names-options` — List Label Names Options (Read-only)

Retrieves available options for the Label Names field.

Full schema: https://pipedream.com/apps/apollo-io/actions/list-label-names-options.md

### `apollo_io-list-opportunity-id-options` — List Opportunity ID Options (Read-only)

Retrieves available options for the Opportunity ID field.

Full schema: https://pipedream.com/apps/apollo-io/actions/list-opportunity-id-options.md

### `apollo_io-list-opportunity-stage-id-options` — List Opportunity Stage ID Options (Read-only)

Retrieves available options for the Opportunity Stage ID field.

Full schema: https://pipedream.com/apps/apollo-io/actions/list-opportunity-stage-id-options.md

### `apollo_io-list-organization-job-postings` — List Organization Job Postings (Read-only)

List the open job postings for a specific Apollo organization. Use Search For Organizations to find a valid organization ID. See the documentation

Full schema: https://pipedream.com/apps/apollo-io/actions/list-organization-job-postings.md

### `apollo_io-list-owner-id-options` — List Owner ID Options (Read-only)

Retrieves available options for the Owner ID field.

Full schema: https://pipedream.com/apps/apollo-io/actions/list-owner-id-options.md

### `apollo_io-people-enrichment` — People Enrichment (Write)

Enriches a person's information, the more information you pass in, the more likely we can find a match. See the documentation

Full schema: https://pipedream.com/apps/apollo-io/actions/people-enrichment.md

### `apollo_io-people-search` — People Search (Read-only)

Find people in the Apollo database using filters such as titles, seniorities, locations, technologies, and employer attributes. Requires a master API key. Use Search For Organizations first to find Apollo organization IDs you want to filter by. See the documentation

Full schema: https://pipedream.com/apps/apollo-io/actions/people-search.md

### `apollo_io-search-accounts` — Search For Accounts (Read-only)

Search for accounts in Apollo.io. See the documentation

Full schema: https://pipedream.com/apps/apollo-io/actions/search-accounts.md

### `apollo_io-search-contacts` — Search For Contacts (Read-only)

Search for contacts in Apollo.io. See the documentation

Full schema: https://pipedream.com/apps/apollo-io/actions/search-contacts.md

### `apollo_io-organization-search` — Search For Organizations (Read-only)

Search the Apollo database for companies (organizations) using filters such as name, domain, employee count, location, technologies, revenue, funding, and job postings. See the documentation

Full schema: https://pipedream.com/apps/apollo-io/actions/organization-search.md

### `apollo_io-search-sequences` — Search For Sequences (Read-only)

Search for sequences in Apollo.io. See the documentation

Full schema: https://pipedream.com/apps/apollo-io/actions/search-sequences.md

### `apollo_io-search-news-articles` — Search News Articles (Read-only)

Search for news articles related to one or more Apollo organizations. Use Search For Organizations to find organization IDs first. See the documentation

Full schema: https://pipedream.com/apps/apollo-io/actions/search-news-articles.md

### `apollo_io-update-account` — Update Account (Write)

Updates an existing account in Apollo.io. See the documentation

Full schema: https://pipedream.com/apps/apollo-io/actions/update-account.md

### `apollo_io-update-account-stage` — Update Account Stage (Write)

Updates the stage of one or more accounts in Apollo.io. See the documentation

Full schema: https://pipedream.com/apps/apollo-io/actions/update-account-stage.md

### `apollo_io-update-contact` — Update Contact (Write)

Updates an existing contact in Apollo.io. See the documentation

Full schema: https://pipedream.com/apps/apollo-io/actions/update-contact.md

### `apollo_io-update-contact-stage` — Update Contact Stage (Write)

Updates the stage of one or more contacts in Apollo.io. See the documentation

Full schema: https://pipedream.com/apps/apollo-io/actions/update-contact-stage.md

### `apollo_io-update-opportunity` — Update Opportunity (Write)

Updates a new opportunity in Apollo.io. See the documentation

Full schema: https://pipedream.com/apps/apollo-io/actions/update-opportunity.md

## Triggers (4)

### `apollo_io-account-updated` — Account Updated (Polling)

Emit new event when an account is updated. See the documentation

Full schema: https://pipedream.com/apps/apollo-io/triggers/account-updated.md

### `apollo_io-contact-updated` — Contact Updated (Polling)

Emit new event when a contact is updated. See the documentation

Full schema: https://pipedream.com/apps/apollo-io/triggers/contact-updated.md

### `apollo_io-account-created` — New Account Created (Polling)

Emit new event when an account is created. See the documentation

Full schema: https://pipedream.com/apps/apollo-io/triggers/account-created.md

### `apollo_io-contact-created` — New Contact Created (Polling)

Emit new event when a contact is created. See the documentation

Full schema: https://pipedream.com/apps/apollo-io/triggers/contact-created.md

---

- All apps: https://pipedream.com/apps — index: https://pipedream.com/llms.txt
- Pipedream docs for agents: https://pipedream.com/docs/llms.txt
