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

/api/v1/profile/about

10 credits

Profile summary + location slice of the full 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/about?id=prsn_pgvv42ri57uei&handle=satyanadella"

Example response

{
  "success": true,
  "statusCode": 200,
  "message": "Profile retrieved successfully",
  "errors": null,
  "data": {
    "id": "prsn_pgvv42ri57uei",
    "handle": "satyanadella",
    "headline": "Chairman and CEO at Microsoft",
    "summary": "As chairman and CEO of Microsoft, I define my mission and that of my company as empowering every person and every organization on the planet to achieve more.",
    "geo": { "city": "Redmond, Washington", "full": "Redmond, Washington, United States", "country": "United States", "countryCode": "us" },
    "geo_city": "Redmond, Washington",
    "geo_country": "United States",
    "geo_country_code": "us"
  }
}

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 →