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

/api/v1/profile/education

10 credits

Education history (education slice of the profile record).

Try in Playground

Parameters

NameTypeRequiredDescription
idstringnoStable profile id (prsn_...). Get it from /api/v1/profile/username-to-urn — read data.id. Provide id OR handle. (e.g. prsn_pgvv42ri57uei)
handlestringnoPublic profile handle. Provide id OR handle. (e.g. satyanadella)

Example request

curl -H "X-API-Key: zq_…" \
  "https://zooq.dev/api/v1/profile/education?id=prsn_pgvv42ri57uei&handle=satyanadella"

Example response

{
  "success": true,
  "statusCode": 200,
  "message": "Profile retrieved successfully",
  "errors": null,
  "data": {
    "id": "prsn_pgvv42ri57uei",
    "handle": "satyanadella",
    "education": [
      { "institution_id": "inst_27nhcpi8h43ua", "school_name": "The University of Chicago Booth School of Business", "url": "https://www.linkedin.com/school/universityofchicagoboothschoolofbusiness/", "start": { "year": 1994, "month": 0 }, "end": { "year": 1996, "month": 0 } },
      { "institution_id": "inst_a8tl7ot52lsge", "school_name": "Manipal Institute of Technology, Manipal", "degree": "Bachelor's Degree", "field_of_study": "Electrical Engineering" },
      { "institution_id": "inst_jvc0deb6vhep2", "school_name": "University of Wisconsin-Milwaukee", "degree": "Master's Degree", "field_of_study": "Computer Science" }
    ]
  }
}

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 →