All services

Service

Apollo

prospect4 endpoints
Docs

Apollo is a sales intelligence and engagement platform providing access to a database of contacts, companies, and deals with enrichment, search, and outreach capabilities.

x402

basesolana

mpp

tempo

Methods

4 methods available

OpenAPI
POST/api/v1/mixed_companies/search
20000 USDC

Organization Search

POST JSON body with filters. Search for organizations by name, location, size, and industry.

{
  "body": {
    "q_organization_name": "string (optional)",
    "organization_locations": [
      "string (optional)"
    ],
    "organization_num_employees_ranges": [
      "string (optional, e.g. '1,10', '11,50')"
    ],
    "organization_industry_tag_ids": [
      "string (optional)"
    ],
    "page": "number (optional)",
    "per_page": "number (optional)"
  }
}
POST/api/v1/mixed_people/api_search
20000 USDC

People API Search

POST JSON body with search filters. Returns matching people. Combine person_titles, person_seniorities, organization_domains etc. to narrow results.

{
  "body": {
    "q_keywords": "string (optional)",
    "person_titles": [
      "string (optional)"
    ],
    "person_seniorities": [
      "string (optional: 'senior', 'manager', 'director', 'vp', 'c_suite')"
    ],
    "person_locations": [
      "string (optional)"
    ],
    "contact_email_status": [
      "string (optional: 'verified')"
    ],
    "organization_domains": [
      "string (optional)"
    ],
    "page": "number (optional)",
    "per_page": "number (optional, max 100)"
  }
}
POST/api/v1/people/bulk_match
50000 USDC

Bulk People Enrichment

POST JSON body with details array. Each entry is like /people/match. Returns enriched profiles for multiple people.

{
  "body": {
    "details": [
      {
        "first_name": "string",
        "last_name": "string",
        "email": "string",
        "organization_name": "string",
        "domain": "string"
      }
    ]
  }
}
POST/api/v1/people/match
30000 USDC

People Enrichment

POST JSON body with at least one identifier. Returns enriched person profile with contact details, employment, and social links.

{
  "body": {
    "first_name": "string (optional)",
    "last_name": "string (optional)",
    "email": "string (optional)",
    "organization_name": "string (optional)",
    "domain": "string (optional)",
    "linkedin_url": "string (optional)"
  }
}