{
  "info": {
    "name": "Apollo — mcp.ai",
    "description": "REST API for the Apollo MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/apollo",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "apollo_add_contacts_to_sequence",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/contacts/to/sequence",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "contacts",
            "to",
            "sequence"
          ]
        },
        "description": "Adds contacts to a specified Apollo email sequence and returns the contact details. `sequence_id`, `emailer_campaign_id`, and `send_email_from_email_account_id` must be retrieved from Apollo listing/s",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"user_id\": \"\",\n  \"contact_ids\": \"\",\n  \"sequence_id\": \"\",\n  \"sequence_no_email\": false,\n  \"emailer_campaign_id\": \"\",\n  \"sequence_job_change\": false,\n  \"sequence_unverified_email\": false,\n  \"send_email_from_email_account_id\": \"\",\n  \"sequence_active_in_other_campaigns\": false,\n  \"sequence_finished_in_other_campaigns\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_bulk_organization_enrichment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/bulk/organization/enrichment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "bulk",
            "organization",
            "enrichment"
          ]
        },
        "description": "Enriches data for up to 10 organizations simultaneously by providing a list of their base company domains (e.g., 'apollo.io', not 'www.apollo.io'). Each call consumes Apollo credits per domain enriche",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"domains\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_bulk_people_enrichment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/bulk/people/enrichment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "bulk",
            "people",
            "enrichment"
          ]
        },
        "description": "Use to enrich multiple person profiles simultaneously with comprehensive data from Apollo's database. Each call consumes Apollo credits; avoid re-enriching the same contacts. Responses may include nul",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"details\": \"\",\n  \"webhook_url\": \"\",\n  \"reveal_phone_number\": false,\n  \"reveal_personal_emails\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_bulk_update_account_stage",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/bulk/update/account/stage",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "bulk",
            "update",
            "account",
            "stage"
          ]
        },
        "description": "Bulk updates the stage for specified existing Apollo.io accounts, moving them to a valid new account stage.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"account_ids\": \"\",\n  \"account_stage_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_create_account",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/account",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "account"
          ]
        },
        "description": "Creates a new account in Apollo.io; a new record is created even if a similar account exists, and provided `owner_id` or `account_stage_id` must be valid existing IDs. The response includes the new ac",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"phone\": \"\",\n  \"domain\": \"\",\n  \"owner_id\": \"\",\n  \"raw_address\": \"\",\n  \"account_stage_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_create_bulk_accounts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/bulk/accounts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "bulk",
            "accounts"
          ]
        },
        "description": "Creates multiple accounts in Apollo.io with a single API call (maximum 100 accounts per request). Use when creating multiple company records at once.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"accounts\": \"\",\n  \"run_dedupe\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_create_bulk_contacts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/bulk/contacts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "bulk",
            "contacts"
          ]
        },
        "description": "Tool to bulk create multiple contacts in Apollo with a single API call. Use when you need to create multiple contacts efficiently. Supports up to 100 contacts per request with optional deduplication.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contacts\": \"\",\n  \"run_dedupe\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_create_call_record",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/call/record",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "call",
            "record"
          ]
        },
        "description": "Tool to log call records in Apollo from external systems. Use when recording calls made through outside systems like Orum or Nooks; requires a master API key and cannot dial prospects directly.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"note\": \"\",\n  \"logged\": false,\n  \"status\": \"\",\n  \"user_id\": \"\",\n  \"duration\": 0,\n  \"end_time\": \"\",\n  \"to_number\": \"\",\n  \"account_id\": \"\",\n  \"contact_id\": \"\",\n  \"start_time\": \"\",\n  \"from_number\": \"\",\n  \"phone_call_outcome_id\": \"\",\n  \"phone_call_purpose_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_create_contact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/contact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "contact"
          ]
        },
        "description": "Creates a new contact in Apollo.io; use `account_id` to link to an organization and `contact_stage_id` for sales stage. Apollo does not auto-deduplicate — duplicate records sharing the same email are ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"title\": \"\",\n  \"last_name\": \"\",\n  \"account_id\": \"\",\n  \"first_name\": \"\",\n  \"home_phone\": \"\",\n  \"label_names\": \"\",\n  \"other_phone\": \"\",\n  \"website_url\": \"\",\n  \"direct_phone\": \"\",\n  \"mobile_phone\": \"\",\n  \"corporate_phone\": \"\",\n  \"contact_stage_id\": \"\",\n  \"organization_name\": \"\",\n  \"present_raw_address\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_create_custom_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/custom/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "custom",
            "field"
          ]
        },
        "description": "Creates a new custom field in Apollo.io for contacts, accounts, or opportunities. Use when you need to define additional data fields beyond Apollo's standard attributes.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"meta\": {},\n  \"type\": \"\",\n  \"label\": \"\",\n  \"modality\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_create_deal",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/deal",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "deal"
          ]
        },
        "description": "Creates a new sales opportunity (deal) in Apollo.io; all provided IDs (`owner_id`, `account_id`, `opportunity_stage_id`) must be valid existing Apollo identifiers. This action has persistent side effe",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"amount\": \"\",\n  \"owner_id\": \"\",\n  \"account_id\": \"\",\n  \"closed_date\": \"\",\n  \"opportunity_stage_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_create_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "task"
          ]
        },
        "description": "Tool to create a single task in Apollo.io. Use when you need to add a new task to your team's Apollo account for a specific contact. The task will be assigned to a user and includes details like type,",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"note\": \"\",\n  \"type\": \"\",\n  \"title\": \"\",\n  \"due_at\": \"\",\n  \"status\": \"\",\n  \"user_id\": \"\",\n  \"priority\": \"\",\n  \"contact_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_get_account",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/account",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "account"
          ]
        },
        "description": "Tool to retrieve detailed information about a specific account by its Apollo ID. Use when you need to fetch complete account data including company details, contact information, and CRM integration fi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_get_auth_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/auth/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "auth",
            "status"
          ]
        },
        "description": "Tool to check whether the provided Apollo API key is valid and accepted by Apollo (health/auth check). Use when any Apollo endpoint returns 401/403/422 to quickly diagnose invalid/expired keys versus ",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_get_contact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/contact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "contact"
          ]
        },
        "description": "Retrieves detailed information about a specific contact by its ID. Use this to view contact details including name, email, phone numbers, organization, and custom fields.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contact_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_get_deal",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/deal",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "deal"
          ]
        },
        "description": "Retrieves information about a specific deal by its ID. Use this when you need to view details of a single deal.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"opportunity_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_get_labels",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/labels",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "labels"
          ]
        },
        "description": "Retrieves all labels from Apollo.io, used for organizing contacts and accounts. Call this before APOLLO_CREATE_CONTACT or APOLLO_UPDATE_ACCOUNT to validate label values against the returned list; mism",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_get_opportunity_stages",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/opportunity/stages",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "opportunity",
            "stages"
          ]
        },
        "description": "Retrieves all configured opportunity (deal) stages from the Apollo.io account.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_get_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "organization"
          ]
        },
        "description": "Retrieves complete information about a specific organization by its Apollo ID. Use when you need detailed company data including funding, technologies, employee counts, and more.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_get_organization_job_postings",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/organization/job/postings",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "organization",
            "job",
            "postings"
          ]
        },
        "description": "Retrieves paginated job postings for a specified organization by its ID, optionally filtering by domain; ensure `organization_id` is a valid identifier.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0,\n  \"organization_id\": \"\",\n  \"q_organization_domains\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_get_typed_custom_fields",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/typed/custom/fields",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "typed",
            "custom",
            "fields"
          ]
        },
        "description": "Retrieves all typed custom field definitions available in the Apollo.io instance, detailing their types and configurations. Call before constructing payloads for APOLLO_UPDATE_CONTACT or APOLLO_UPDATE",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_list_account_stages",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/account/stages",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "account",
            "stages"
          ]
        },
        "description": "Retrieves the IDs for all available account stages in your team's Apollo account.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_list_contact_stages",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/contact/stages",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "contact",
            "stages"
          ]
        },
        "description": "Retrieves all available contact stages from an Apollo account, including their unique IDs and names.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_list_deals",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/deals",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "deals"
          ]
        },
        "description": "Retrieves a list of deals from Apollo, using Apollo's default sort order if 'sort_by_field' is omitted.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0,\n  \"sort_by_field\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_list_email_accounts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/email/accounts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "email",
            "accounts"
          ]
        },
        "description": "Retrieves all email accounts and their details for the authenticated user; takes no parameters.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_list_fields",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/fields",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "fields"
          ]
        },
        "description": "Retrieves all field definitions from Apollo.io, including system fields and custom fields. Use the optional 'source' parameter to filter by field type (system, custom, or crm_synced).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"source\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_list_users",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/users",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "users"
          ]
        },
        "description": "Retrieves a list of all users (teammates) associated with the Apollo account, supporting pagination via `page` and `per_page` parameters. Use this to obtain numeric user IDs required by operations lik",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_organization_enrichment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/organization/enrichment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "organization",
            "enrichment"
          ]
        },
        "description": "Fetches comprehensive organization enrichment data from Apollo.io for a given company domain; results are most meaningful if the company exists in Apollo's database. Each call consumes Apollo credits ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"domain\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_organization_search",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/organization/search",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "organization",
            "search"
          ]
        },
        "description": "Searches Apollo's database for organizations using various filters; consumes credits on every call (unavailable on free plans) — avoid re-running identical queries and surface quota errors rather than",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0,\n  \"organization_ids\": \"\",\n  \"q_organization_name\": \"\",\n  \"organization_locations\": \"\",\n  \"organization_not_locations\": \"\",\n  \"q_organization_domains_list\": \"\",\n  \"q_organization_keyword_tags\": \"\",\n  \"organization_num_employees_ranges\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_people_enrichment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/people/enrichment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "people",
            "enrichment"
          ]
        },
        "description": "Enriches and retrieves information for a person from Apollo.io. Requires one of: `id`, `email`, `hashed_email`, `linkedin_url`, or (`first_name` and `last_name` with `organization_name` or `domain`) f",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"name\": \"\",\n  \"email\": \"\",\n  \"domain\": \"\",\n  \"last_name\": \"\",\n  \"first_name\": \"\",\n  \"webhook_url\": \"\",\n  \"hashed_email\": \"\",\n  \"linkedin_url\": \"\",\n  \"organization_name\": \"\",\n  \"reveal_phone_number\": false,\n  \"reveal_personal_emails\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_people_search",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/people/search",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "people",
            "search"
          ]
        },
        "description": "Searches Apollo's contact database for people using various filters; results capped at 50,000 records and does not enrich contact data. Combining multiple strict filters (organization_ids, person_titl",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0,\n  \"q_keywords\": \"\",\n  \"person_titles\": \"\",\n  \"organization_ids\": \"\",\n  \"person_locations\": \"\",\n  \"person_seniorities\": \"\",\n  \"contact_email_status\": \"\",\n  \"organization_locations\": \"\",\n  \"q_organization_domains\": \"\",\n  \"organization_num_employees_ranges\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_search_accounts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/accounts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "accounts"
          ]
        },
        "description": "Searches for accounts within your existing Apollo.io database using various criteria; requires a paid plan and is limited to 50,000 records.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0,\n  \"sort_by_field\": \"\",\n  \"sort_ascending\": false,\n  \"account_stage_ids\": \"\",\n  \"q_organization_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_search_calls",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/calls",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "calls"
          ]
        },
        "description": "Searches for call records in Apollo.io using filters like date range, duration, direction (inbound/outgoing), users, contacts, purposes, outcomes, and keywords. Supports pagination for efficient data ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"inbound\": \"\",\n  \"per_page\": 0,\n  \"user_ids\": \"\",\n  \"q_keywords\": \"\",\n  \"duration_max\": 0,\n  \"duration_min\": 0,\n  \"date_range_max\": \"\",\n  \"date_range_min\": \"\",\n  \"contact_label_ids\": \"\",\n  \"phone_call_outcome_ids\": \"\",\n  \"phone_call_purpose_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_search_contacts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/contacts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "contacts"
          ]
        },
        "description": "Searches Apollo contacts using keywords, stage IDs (from 'List Contact Stages' action), or sorting (max 50,000 records; `sort_ascending` requires `sort_by_field`). Search before creating contacts to a",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0,\n  \"q_keywords\": \"\",\n  \"sort_by_field\": \"\",\n  \"sort_ascending\": false,\n  \"contact_stage_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_search_news_articles",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/news/articles",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "news",
            "articles"
          ]
        },
        "description": "Tool to search for news articles about companies in Apollo's database. Use when you need to find recent news, announcements, or updates about specific organizations using their Apollo IDs.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0,\n  \"categories\": \"\",\n  \"organization_ids\": \"\",\n  \"published_at_max\": \"\",\n  \"published_at_min\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_search_outreach_emails",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/outreach/emails",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "outreach",
            "emails"
          ]
        },
        "description": "Tool to search for outreach emails sent through Apollo sequences. Use when you need to find emails created and sent by your team as part of Apollo email campaigns. This endpoint requires a master API ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_search_sequences",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/sequences",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "sequences"
          ]
        },
        "description": "Searches for sequences (e.g., automated email campaigns) in Apollo.io.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"q_name\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_search_tasks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/tasks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "tasks"
          ]
        },
        "description": "Searches for tasks in Apollo.io using filters like keywords, date ranges (due, created, updated), priorities, types, assigned users, associated contacts/accounts, supporting sorting and pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0,\n  \"q_keywords\": \"\",\n  \"task_types\": \"\",\n  \"account_ids\": \"\",\n  \"contact_ids\": \"\",\n  \"sort_by_field\": \"\",\n  \"task_user_ids\": \"\",\n  \"due_date_range\": {},\n  \"sort_ascending\": false,\n  \"task_priorities\": \"\",\n  \"task_created_at_range\": {},\n  \"task_updated_at_range\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_update_account",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/account",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "account"
          ]
        },
        "description": "Updates specified attributes of an existing account in Apollo.io.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"phone\": \"\",\n  \"domain\": \"\",\n  \"owner_id\": \"\",\n  \"account_id\": \"\",\n  \"raw_address\": \"\",\n  \"account_stage_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_update_account_owners",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/account/owners",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "account",
            "owners"
          ]
        },
        "description": "Updates the ownership of multiple Apollo accounts to a specified user. Use when bulk assigning account ownership to a team member.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"owner_id\": \"\",\n  \"account_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_update_call_record",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/call/record",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "call",
            "record"
          ]
        },
        "description": "Tool to update an existing call record in Apollo.io. Use when you need to modify details of a previously logged phone call such as duration, status, notes, or associated contact/account information.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"note\": \"\",\n  \"logged\": false,\n  \"status\": \"\",\n  \"user_id\": \"\",\n  \"duration\": 0,\n  \"end_time\": \"\",\n  \"to_number\": \"\",\n  \"account_id\": \"\",\n  \"contact_id\": \"\",\n  \"start_time\": \"\",\n  \"from_number\": \"\",\n  \"phone_call_outcome_id\": \"\",\n  \"phone_call_purpose_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_update_contact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/contact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "contact"
          ]
        },
        "description": "Tool to update an existing contact's information in Apollo. Use when you need to modify contact details such as name, email, phone, title, organization, or custom fields. At least one field beyond con",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"title\": \"\",\n  \"last_name\": \"\",\n  \"account_id\": \"\",\n  \"contact_id\": \"\",\n  \"first_name\": \"\",\n  \"home_phone\": \"\",\n  \"label_names\": \"\",\n  \"other_phone\": \"\",\n  \"website_url\": \"\",\n  \"direct_phone\": \"\",\n  \"mobile_phone\": \"\",\n  \"corporate_phone\": \"\",\n  \"contact_stage_id\": \"\",\n  \"organization_name\": \"\",\n  \"present_raw_address\": \"\",\n  \"typed_custom_fields\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_update_contact_ownership",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/contact/ownership",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "contact",
            "ownership"
          ]
        },
        "description": "Updates the ownership of specified Apollo contacts to a given Apollo user, who must be part of the same team.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"owner_id\": \"\",\n  \"contact_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_update_contact_stage",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/contact/stage",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "contact",
            "stage"
          ]
        },
        "description": "Updates the stage for one or more existing contacts in Apollo.io to a new valid contact stage, useful for managing sales funnel progression.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contact_ids\": \"\",\n  \"contact_stage_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_update_contact_status_in_sequence",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/contact/status/in/sequence",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "contact",
            "status",
            "in",
            "sequence"
          ]
        },
        "description": "Updates a contact's status within a designated Apollo sequence, but cannot set the status to 'active'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"status\": \"\",\n  \"contact_id\": \"\",\n  \"sequence_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_update_contacts_bulk",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/contacts/bulk",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "contacts",
            "bulk"
          ]
        },
        "description": "Tool to bulk update multiple Apollo contacts with a single API call. Use when updating multiple contacts simultaneously - either apply the same updates to all contacts using contact_ids, or apply diff",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"async\": false,\n  \"email\": \"\",\n  \"title\": \"\",\n  \"owner_id\": \"\",\n  \"last_name\": \"\",\n  \"account_id\": \"\",\n  \"first_name\": \"\",\n  \"contact_ids\": \"\",\n  \"linkedin_url\": \"\",\n  \"organization_name\": \"\",\n  \"contact_attributes\": \"\",\n  \"visible_entity_ids\": \"\",\n  \"present_raw_address\": \"\",\n  \"typed_custom_fields\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_update_deals",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/deals",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "deals"
          ]
        },
        "description": "Updates specified fields of an existing Apollo.io deal (opportunity), requiring a valid `opportunity_id`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"amount\": \"\",\n  \"is_won\": false,\n  \"source\": \"\",\n  \"owner_id\": \"\",\n  \"is_closed\": false,\n  \"account_id\": \"\",\n  \"closed_date\": \"\",\n  \"opportunity_id\": \"\",\n  \"opportunity_stage_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apollo_view_api_usage_stats",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/view/api/usage/stats",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "view",
            "api",
            "usage",
            "stats"
          ]
        },
        "description": "Fetches Apollo API usage statistics and rate limits for the connected team. Use before large enrichment/search runs to understand current API usage and plan/budget constraints. If experiencing 403s on",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}