GET
/peopleSearch People
Search founders, executives, board members, and key team members by name, title, country, or sector.
GEThttps://www.startuphub.ai/api/v1/people
Request
curl "https://www.startuphub.ai/api/v1/people?tag=Unit+8200&limit=10" \
-H "Authorization: Bearer sk_live_..."Parameters
qstringoptionalSearch query (matches name, title)
countrystringoptionalFilter by country
titlestringoptionalFilter by current title (partial match)
sectorstringoptionalFilter by sector
tagstringoptionalFilter by tag: Unit 8200, Unit 81, Serial Entrepreneur, AI Expert, Investor, Has Exits
limitintegeroptionaldefault: 20Results per page (1-100)
offsetintegeroptionaldefault: 0Pagination offset
Response
json
{
"data": [
{
"id": "uuid",
"name": "Avi Shua",
"slug": "avi-shua",
"title": "CIO",
"current_title": "Chief Innovation Officer at Orca Security",
"city": "Tel Aviv",
"country": "Israel",
"sectors": ["Cybersecurity", "Cloud"],
"total_score": 85.0,
"tags": ["Unit 8200", "Serial Entrepreneur", "Has Exits"],
"avatar_url": "https://cdn.startuphub.ai/..."
}
],
"pagination": {
"total": 1,
"limit": 5,
"offset": 0
},
"credits": {
"used": 1,
"remaining": 49
}
}Errors
401Invalid or missing API key429Daily rate limit exceeded