Profile
GET

/api/v1/profile/overview

10 credits

Basic profile by LinkedIn username.

Try in Playground

Parameters

NameTypeRequiredDescription
usernamestringyesLinkedIn username (the part after linkedin.com/in/). (e.g. satyanadella)

Example request

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

Example response

{
  "success": true,
  "statusCode": 200,
  "message": "Profile retrieved",
  "data": {
    "username": "satyanadella",
    "fullName": "Satya Nadella",
    "headline": "Chairman and CEO at Microsoft",
    "location": "Redmond, Washington",
    "industry": "Software Development",
    "profilePicture": "https://media.linkedin.com/...",
    "followerCount": 11500000,
    "publicProfileUrl": "https://www.linkedin.com/in/satyanadella"
  },
  "errors": null
}

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.