Enrich contacts with email and phone data from LinkedIn profiles via pay-per-call API.
What it does
Clado Contact Enrichment is one endpoint within the broader Clado suite, a people-search and LinkedIn data platform exposed through the Locus MPP (Micropayment Protocol). The `/clado/contacts` endpoint accepts a LinkedIn profile URL, email, or phone number and returns enriched contact information. You can toggle email enrichment (4 credits) and phone enrichment (10 credits) independently. Pricing is variable at $0.04–$0.14 per call depending on enrichment options selected, settled via Tempo in pathUSD.
The broader Clado service (accessible at the same MPP gateway) also offers people search, LinkedIn profile scraping, deep research for lead generation, post-reaction extraction, and bulk contact enrichment. The contact enrichment endpoint specifically is a POST-only route; the probe returned 404 on HEAD/GET, which is expected since the OpenAPI spec defines it as a POST endpoint. Payment is handled via the MPP charge intent — each call is a one-shot micropayment settled on Tempo L2.
No response schema is documented in the OpenAPI spec, so the exact shape of enriched data returned is unknown. The upstream docs reference is listed as https://docs.clado.ai, and an LLM-oriented skill file is available at https://beta.paywithlocus.com/mpp/clado.md. The currency token address is 0x20c000000000000000000000b9537d11c60e8b50 (pathUSD, 6 decimals).
Capabilities
Use cases
- —Enrich a LinkedIn profile URL with verified email and phone number for sales outreach
- —Augment CRM records with missing contact details on a per-lookup basis
- —Build automated lead qualification pipelines that resolve LinkedIn URLs to direct contact info
- —Agent-driven prospecting workflows that pay per enrichment with no subscription
Fit
Best for
- —Sales teams needing on-demand contact enrichment without monthly subscriptions
- —AI agents performing automated lead research and outreach preparation
- —Developers integrating pay-per-call contact data into custom pipelines
Not for
- —Bulk enrichment of millions of records (consider the bulk-contacts sibling endpoint instead)
- —Use cases requiring company-level firmographic data rather than individual contacts
- —Scenarios where you need guaranteed response schema documentation before integration
Quick start
curl -X POST https://clado.mpp.paywithlocus.com/clado/contacts \
-H "Content-Type: application/json" \
-d '{"linkedin_url": "https://linkedin.com/in/janedoe", "email_enrichment": true, "phone_enrichment": false}'Example
Request
{
"linkedin_url": "https://linkedin.com/in/janedoe",
"email_enrichment": true,
"phone_enrichment": false
}Endpoint
Quality
The OpenAPI spec provides clear request schemas and pricing metadata for this endpoint and its siblings, but no response schema or example responses are documented. The probe returned 404 because it used HEAD/GET on a POST-only route, so liveness is not confirmed but likely given the well-structured OpenAPI. No crawled pages returned useful content.
Warnings
- —No response schema documented — the shape of enriched data is unknown
- —Endpoint liveness not directly confirmed (probe used HEAD/GET on a POST-only route)
- —Variable pricing ($0.04–$0.14) with no breakdown of what determines the final charge beyond credit counts
- —Currency token address not independently verified as pathUSD
Citations
- —Contact Enrichment endpoint pricing is $0.04–$0.14 per callhttps://clado.mpp.paywithlocus.com
- —Email enrichment costs 4 credits, phone enrichment costs 10 creditshttps://clado.mpp.paywithlocus.com
- —Clado provides people search, LinkedIn enrichment, and deep research for lead generationhttps://clado.mpp.paywithlocus.com
- —API reference docs at https://docs.clado.ai and LLM skill file at https://beta.paywithlocus.com/mpp/clado.mdhttps://clado.mpp.paywithlocus.com