Service
Apollo
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
mpp
Methods
4 methods available
POST/api/v1/mixed_companies/search20000 USDC
/api/v1/mixed_companies/searchOrganization 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_search20000 USDC
/api/v1/mixed_people/api_searchPeople 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_match50000 USDC
/api/v1/people/bulk_matchBulk 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/match30000 USDC
/api/v1/people/matchPeople 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)"
}
}