Look up company details by domain, name, or Apollo ID — pay-per-call via MPP/Tempo.
What it does
This endpoint provides organization enrichment powered by Apollo's 275M+ contact database, served through the Locus MPP (Micropayment Protocol) gateway. Given a company domain, organization name, or Apollo organization ID, it returns enriched company data. Payment is settled per-call on Tempo L2 using pathUSD at $0.008 per request.
The endpoint is part of a broader Apollo suite available through the same Locus MPP gateway, which also offers people enrichment, bulk enrichment (people and orgs), people search, organization search, job postings lookup, and news article search. The org-enrichment endpoint specifically accepts a POST with a JSON body containing one or more of: `domain`, `organization_name`, or `id` (Apollo organization ID). No API key is needed — authentication and billing are handled entirely through the MPP 402 payment challenge flow.
Pricing for this specific endpoint is 8,000 base units of pathUSD (6 decimals), which equals $0.008 per call. Sibling endpoints on the same gateway range from $0.005 to $0.043 per call depending on the operation and options selected. The OpenAPI spec is well-structured with request schemas for all endpoints, though response schemas are not documented. The endpoint returned 404 on HEAD/GET probes, which is expected since it only accepts POST requests.
Capabilities
Use cases
- —Enriching CRM records with company details by domain
- —Building lead qualification pipelines that need firmographic data
- —Augmenting prospect lists with organization metadata before outreach
- —Agent-driven research workflows that need structured company info
- —Validating company information during onboarding or KYB flows
Fit
Best for
- —AI agents needing on-demand company data without API key management
- —Pay-per-use company enrichment without subscription commitments
- —Automated sales intelligence pipelines settling via crypto micropayments
Not for
- —High-volume bulk enrichment beyond 10 orgs at a time (use the bulk endpoint instead)
- —Users who need response schema guarantees — response format is undocumented
- —Teams that require traditional API key auth or Stripe billing
Quick start
curl -X POST https://apollo.mpp.paywithlocus.com/apollo/org-enrichment \
-H "Content-Type: application/json" \
-d '{"domain": "openai.com"}'Example
Request
{
"domain": "openai.com"
}Endpoint
Quality
The OpenAPI spec is reasonably detailed with request schemas and pricing metadata for all sibling endpoints, but response schemas are entirely absent. The endpoint returned 404 on HEAD/GET (expected for POST-only), so liveness via the 402 challenge was not directly confirmed. No crawled documentation provided useful content beyond error messages.
Warnings
- —Response schema is not documented — consumers must discover the response format empirically.
- —The MPP probe returned 404 on HEAD and GET; the endpoint only accepts POST, so liveness was not directly confirmed via 402 challenge.
- —All crawled pages returned generic 'not found' JSON — no supplementary documentation was retrievable from the gateway host.
- —Currency address 0x20c000000000000000000000b9537d11c60e8b50 is assumed to be pathUSD with 6 decimals based on the Tempo/Locus convention; this is not independently verified.
Citations
- —Apollo's database contains 275M+ contactshttps://apollo.mpp.paywithlocus.com
- —Org-enrichment endpoint charges 8000 base units via Tempo methodhttps://apollo.mpp.paywithlocus.com
- —API reference available at docs.apollo.io, LLM docs at beta.paywithlocus.com/mpp/apollo.mdhttps://apollo.mpp.paywithlocus.com
- —Endpoint accepts domain, organization_name, or id as request parametershttps://apollo.mpp.paywithlocus.com