GET
/enrich/email5 creditsEnrich Email
Turn one email address into a person + company context: resolves the person if known, and the company from the email domain (name, funding, website), with a best-guess name when the person is not on file. 5 credits.
GEThttps://www.startuphub.ai/api/v1/enrich/email
Request
curl "https://www.startuphub.ai/api/v1/enrich/[email protected]" \
-H "Authorization: Bearer sk_live_..."Parameters
emailstringrequiredEmail address to enrich
Response
json
{
"data": {
"email": "[email protected]",
"person": { "name": "Jane Doe", "slug": "jane-doe", "current_title": "VP Engineering, Ramp" },
"company": { "name": "Ramp", "slug": "ramp", "website": "https://ramp.com", "total_funding": 1900000000, "startuphub_url": "https://www.startuphub.ai/startups/ramp" }
},
"credits": { "cost": 5, "remaining_period": 9995, "remaining_balance": 2000 }
}Errors
400Missing or invalid email401Invalid or missing API key429Insufficient credits