
Data Enrichment
- 40 installs
- 3 repo stars
- Updated March 7, 2026
- merit-systems/x402scan-skills
Helps with ai & agent building tasks.
About
data-enrichment is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.
- data-enrichment
- AI & Agent Building
- AI-coding skill
Data Enrichment by the numbers
- 40 all-time installs (skills.sh)
- Ranked #8,266 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/merit-systems/x402scan-skills --skill data-enrichmentAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 40 |
|---|---|
| repo stars | ★ 3 |
| Last updated | March 7, 2026 |
| Repository | merit-systems/x402scan-skills ↗ |
What it does
Helps with ai & agent building tasks.
Files
Data Enrichment with x402 APIs
STOP — Read before making any API call. enrichx402.com endpoints are not the same as each provider's native API. All paths use the format https://enrichx402.com/api/{provider}/{action}. You MUST either:1. Copy exact URLs from the Quick Reference table below, OR
2. Run x402.discover_api_endpoints(url="https://enrichx402.com") to get the correct paths>
Guessing paths will fail with 405 errors (wrong path) or 404 errors (missing /api/ prefix).Use the x402scan MCP tools to access enrichment APIs at enrichx402.com.
Setup
See rules/getting-started.md for installation and wallet setup.
Quick Reference
| Task | Endpoint | Price | Best For |
|---|---|---|---|
| Enrich person | https://enrichx402.com/api/apollo/people-enrich | $0.0495 | Email/LinkedIn -> full profile |
| Enrich company | https://enrichx402.com/api/apollo/org-enrich | $0.0495 | Domain -> company data |
| Search people | https://enrichx402.com/api/apollo/people-search | $0.02 | Find people by criteria |
| Search companies | https://enrichx402.com/api/apollo/org-search | $0.02 | Find companies by criteria |
| LinkedIn scrape | https://enrichx402.com/api/clado/linkedin-scrape | $0.04 | Full LinkedIn profile |
| Contact recovery | https://enrichx402.com/api/clado/contacts-enrich | $0.20 | Find missing email/phone |
| Bulk people | https://enrichx402.com/api/apollo/people-enrich/bulk | $0.495 | Up to 10 people at once |
| Bulk companies | https://enrichx402.com/api/apollo/org-enrich/bulk | $0.495 | Up to 10 companies at once |
Workflows
Standard Enrichment
1. (Optional) Check balance: x402.get_wallet_info 2. Discover endpoints (required before first fetch): x402.discover_api_endpoints(url="https://enrichx402.com") 3. Check endpoint schema: x402.check_endpoint_schema(url="...") to verify parameters and pricing 4. Call endpoint with x402.fetch using exact URL from discovery or Quick Reference table above 5. Parse and present results
x402.fetch(
url="https://enrichx402.com/api/apollo/people-enrich",
method="POST",
body={"email": "user@company.com"}
)Person Enrichment
Enrich a person using any available identifier:
x402.fetch(
url="https://enrichx402.com/api/apollo/people-enrich",
method="POST",
body={
"email": "john@company.com",
"first_name": "John",
"last_name": "Doe",
"organization_name": "Acme Inc",
"domain": "company.com",
"linkedin_url": "https://linkedin.com/in/johndoe"
}
)Input options (provide any combination):
email- Email address (most reliable)linkedin_url- LinkedIn profile URLfirst_name+last_name- Name (works better with domain/org)organization_nameordomain- Helps match the right person
Returns: Name, title, company, employment history, location, social profiles, phone numbers.
Company Enrichment
Enrich a company by domain:
x402.fetch(
url="https://enrichx402.com/api/apollo/org-enrich",
method="POST",
body={
"domain": "stripe.com"
}
)Returns: Company name, industry, employee count, revenue estimates, funding info, technologies used, social links.
People Search
Search for people matching criteria:
x402.fetch(
url="https://enrichx402.com/api/apollo/people-search",
method="POST",
body={
"q_keywords": "software engineer",
"person_titles": ["CTO", "VP Engineering"],
"organization_domains": ["google.com", "meta.com"],
"person_locations": ["San Francisco, CA"]
}
)Search filters:
q_keywords- Keywords to searchperson_titles- Job title filtersorganization_domains- Company domainsperson_locations- Location filtersperson_seniorities- Seniority levels
Company Search
Search for companies matching criteria:
x402.fetch(
url="https://enrichx402.com/api/apollo/org-search",
method="POST",
body={
"q_keywords": "fintech",
"organization_locations": ["New York, NY"],
"organization_num_employees_ranges": ["51-200", "201-500"]
}
)LinkedIn Scraping (Clado)
Get full LinkedIn profile data:
x402.fetch(
url="https://enrichx402.com/api/clado/linkedin-scrape",
method="POST",
body={
"linkedin_url": "https://linkedin.com/in/johndoe"
}
)Returns: Experience history, education, skills, certifications, recommendations, connection count.
Contact Recovery (Clado)
Find missing email or phone:
x402.fetch(
url="https://enrichx402.com/api/clado/contacts-enrich",
method="POST",
body={
"linkedin_url": "https://linkedin.com/in/johndoe",
"email": "john@example.com"
}
)Returns: Validated email addresses and phone numbers with confidence scores.
Bulk Operations
Process up to 10 records in one request:
x402.fetch(
url="https://enrichx402.com/api/apollo/people-enrich/bulk",
method="POST",
body={
"people": [
{ "email": "person1@company.com" },
{ "email": "person2@company.com" },
{ "linkedin_url": "https://linkedin.com/in/person3" }
]
}
)For companies:
x402.fetch(
url="https://enrichx402.com/api/apollo/org-enrich/bulk",
method="POST",
body={
"organizations": [
{ "domain": "company1.com" },
{ "domain": "company2.com" }
]
}
)Cost Optimization
Field Filtering
Reduce costs by excluding unneeded fields:
body={
"email": "john@company.com",
"excludeFields": ["employment_history", "photos", "phone_numbers"]
}Common fields to exclude:
employment_history- Past jobs (often large)photos- Profile imagesphone_numbers- If you only need emailsocial_profiles- If you don't need social links
Bulk vs Individual
- Individual: $0.0495 per record
- Bulk (10): $0.495 total = $0.0495 per record
Bulk is the same price per record but faster for multiple items.
Search Before Enrich
Use search endpoints ($0.02) to find the right records before enriching ($0.0495):
1. Search for candidates: /api/apollo/people-search 2. Review results, pick the right match 3. Enrich only the matches you need
Parallel Calls
When enriching multiple independent records, make calls in parallel:
# These can run simultaneously since they're independent
x402.fetch(url=".../people-enrich", body={"email": "a@co.com"})
x402.fetch(url=".../people-enrich", body={"email": "b@co.com"})Or use bulk endpoints for the best efficiency.
Handling missing data
If any query fails to return the data you are looking for, revist the list of available APIs.
Oftentimes, if apollo is missing data, clado will have it, and vice versa.
If those still fail, use built-in WebSearch and WebFetch tools to find additional information like a company domain name or LinkedIn URL, and then use that data to make more targeted queries.
Getting Started
Setup
1. Install the x402scan MCP:
npx @x402scan/mcp install --client claude-code -y2. Check wallet:
x402.get_wallet_info3. Fund wallet (if needed):
- Redeem invite:
x402.redeem_invite(code="YOUR_CODE") - Or use the deposit UI (point the user towards this URL: https://x402scan.com/mcp/deposit/<their-wallet-address>)
Troubleshooting
| Issue | Solution |
|---|---|
| "MCP tool not found" | Run install command, restart Claude Code |
| "Insufficient balance" | Fund wallet with USDC |
| "Payment failed" | Check balance, retry (transient errors) |
| "No match found" | Try different identifiers (email vs LinkedIn) or use search first |
| "405 Method Not Allowed" | Wrong endpoint path. Run x402.discover_api_endpoints(url="https://enrichx402.com") and use exact paths from results or Quick Reference table in SKILL.md |
| "404 Not Found" | Missing /api/ prefix. All paths must start with https://enrichx402.com/api/ |
| "400 Bad Request" | Verify parameter names match exactly from examples in SKILL.md |