GET
/people/:slug1 creditGet Person
Full record for a single person by slug - current title, the startups/investors they are linked to, and (plan-gated) verified contact fields. 1 credit.
GEThttps://www.startuphub.ai/api/v1/people/:slug
Request
curl "https://www.startuphub.ai/api/v1/people/sam-altman" \
-H "Authorization: Bearer sk_live_..."Parameters
slugstringrequiredPerson slug (path), e.g. /people/sam-altman
Response
json
{
"data": {
"id": "uuid",
"name": "Sam Altman",
"slug": "sam-altman",
"current_title": "CEO, OpenAI",
"country": "United States",
"linkedin_url": "https://www.linkedin.com/in/...",
"startuphub_url": "https://www.startuphub.ai/people/sam-altman"
}
}Errors
401Invalid or missing API key404Person not found