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

/api/v1/profile/overview

10 credits

Professional record by handle or stable prsn_ id (returns the full profile).

Try in Playground

Parameters

NameTypeRequiredDescription
handlestringnoPublic profile handle — the part after linkedin.com/in/. Provide handle OR id. (e.g. satyanadella)
idstringnoStable profile id (prsn_...). Preferred — never changes. Get it from /api/v1/profile/username-to-urn — read data.id. Provide handle OR id. (e.g. prsn_pgvv42ri57uei)

Example request

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

Example response

{
  "success": true,
  "statusCode": 200,
  "message": "Profile retrieved successfully",
  "errors": null,
  "data": {
    "id": "prsn_pgvv42ri57uei",
    "url": "https://linkedin.com/in/satyanadella",
    "handle": "satyanadella",
    "first_name": "Satya",
    "last_name": "Nadella",
    "is_creator": true,
    "is_premium": true,
    "is_influencer": true,
    "is_open_to_work": false,
    "is_hiring": false,
    "follower_count": 12086488,
    "connections_count": 831,
    "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" }
  }
}

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

Available via MCP as profile_overview

Add Zooq as an MCP server to Claude Desktop or Cursor and call this tool directly from your agent. See the MCP guide.

Want to try this endpoint?

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

Get an API key →