Now out of stealth: the missing link between AI agents and LinkedIn data.
Search
GET

/api/v1/search/alumni

10 credits

Alumni and current students of an institution (professional records + the education link). Page-paginated. Built for recruiting and warm-intro sourcing.

Try in Playground

Parameters

NameTypeRequiredDescription
normalized_namestringyesThe institution's normalized name (lowercase, hyphenated). Discover it via /api/v1/search/schools — read data[].normalized_name. (e.g. stanford-university)
current_onlybooleannoRestrict to people currently studying there.
degreestringnoDegree filter (min 3 chars), e.g. mba.
field_of_studystringnoField-of-study filter (min 3 chars), e.g. computer science.
geo_citystringnoCity filter (min 3 chars).
geo_country_codestringnoISO country code filter, e.g. us.
start_year_minintegernoEarliest enrollment year (1900-current+10).
start_year_maxintegernoLatest enrollment year (>= start_year_min).
end_year_minintegernoEarliest graduation year.
end_year_maxintegernoLatest graduation year.
sortstringnoOrdering. Accepted values: newest, oldest, recently_graduated.
pageintegernoPage number (>=1, default 1).
limitintegernoResults per page, 1-50 (default 20).

Example request

curl -H "X-API-Key: zq_…" \
  "https://zooq.dev/api/v1/search/alumni?normalized_name=stanford-university"

Example response

{
  "success": true,
  "statusCode": 200,
  "message": "Data retrieved successfully",
  "errors": null,
  "data": [
    { "id": "prsn_pgvv42ri57uei", "handle": "satyanadella", "first_name": "Satya", "last_name": "Nadella", "headline": "Chairman and CEO at Microsoft", "education": { "institution_id": "inst_a8tl7ot52lsge", "school_name": "Stanford University", "degree": "MS", "field_of_study": "Computer Science", "start": { "year": 1990 }, "end": { "year": 1992 } } }
  ],
  "pagination": { "page": 1, "limit": 20, "has_more": true }
}

Successful responses are wrapped in the standard envelope. The data field carries the actual payload; errors is null on success.

Want to try this endpoint?

300 free credits on signup, no card required. That covers 30 calls.

Get an API key →