Skip to main content
GET
/
v1
/
people
List people
curl --request GET \
  --url https://api-v1.maverickintelligence.co/v1/people \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "email": "<string>",
      "businessEmail": "<string>",
      "personalEmail": "<string>",
      "firstName": "<string>",
      "lastName": "<string>",
      "title": "<string>",
      "company": "<string>",
      "location": "<string>",
      "region": "USA",
      "linkedinUrl": "<string>",
      "phone": "<string>",
      "profileImageUrl": "<string>",
      "visitCount": 123,
      "firstSeen": "2023-11-07T05:31:56Z",
      "lastSeen": "2023-11-07T05:31:56Z",
      "isHotLead": true,
      "classifiedSeniority": "<string>",
      "classifiedJobFunction": "<string>",
      "trafficType": "<string>",
      "adPlatform": "<string>",
      "companyData": {
        "companyId": "<string>",
        "name": "<string>",
        "domain": "<string>",
        "standardizedIndustry": "<string>",
        "location": "<string>",
        "employeeCount": 123
      }
    }
  ],
  "pagination": {
    "limit": 123,
    "count": 123,
    "nextCursor": "<string>"
  }
}

Authorizations

X-API-Key
string
header
required

API key in format: mk_live_{40 hex chars}

Query Parameters

limit
integer
default:50

Number of records per page

Required range: 1 <= x <= 100
cursor
string

Pagination cursor from the previous response's nextCursor

since
string<date-time>

Only return records with lastSeen after this ISO 8601 date

hot_leads_only
boolean

Filter to only ICP-matched hot leads

Response

List of people

data
object[]
pagination
object