People

This endpoint lets you find people in a particular organization. When filtering by job function or job level, please use the values from our web application.

Successful calls to this endpoint consume API credits from your account. The number of credits used depends on the number of people found. Each person found costs 1 credit.

Find people at an organization

post
Authorizations
Body
organizationany ofRequired

Organization to enrich

or
or
job_functionsstring[]Optional

Job function to filter by (e.g. Engineer, Executive)

Default: []
job_levelsstring[]Optional

Job level to filter by (e.g. Senior, Manager)

Default: []
countriesstring[]Optional

Countries to filter by (e.g. US, CA)

Default: []
limitinteger · min: 1 · max: 250Optional

Maximum number of people to return

Default: 10
sinceany ofOptional

Only consider data since this date. Format: YYYY-MM-DD

stringOptional
or
nullOptional
Responses
200

Successful Response

application/json
post
POST /v1/people/find HTTP/1.1
Host: api.sumble.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 178

{
  "organization": {
    "domain": "sumble.com"
  },
  "job_functions": [
    "Engineer",
    "Operations"
  ],
  "job_levels": [
    "Individual Contributor"
  ],
  "countries": [
    "US",
    "UY"
  ],
  "since": "2023-10-01",
  "limit": 20
}
{
  "id": "019980d2-bc85-7571-9d60-7bc1d3084249",
  "credits_used": 3,
  "credits_remaining": 69164,
  "organization": {
    "id": 1726684,
    "slug": "sumble",
    "name": "Sumble",
    "domain": "sumble.com"
  },
  "people_count": 3,
  "people_data_url": "https://sumble.com/l/org/xhXARFaWtJL/people",
  "people": [
    {
      "id": 181438858,
      "url": "https://sumble.com/l/person/MBwjfWREd8Pz",
      "linkedin_url": "https://www.linkedin.com/in/akashagajjar",
      "name": "Akash Gajjar",
      "job_title": "Software Engineer",
      "job_function": "Software Engineer",
      "job_level": "Individual Contributor",
      "location": "Gainesville, Florida, United States",
      "country": "United States",
      "start_date": "2024-08",
      "country_code": "US"
    },
    {
      "id": 169860318,
      "url": "https://sumble.com/l/person/yxGWeupK3yPj",
      "linkedin_url": "https://www.linkedin.com/in/jared-nightingale",
      "name": "Jared Nightingale",
      "job_title": "Business Operations Specialist",
      "job_function": "Operations",
      "job_level": "Individual Contributor",
      "location": "Phoenix, Arizona, United States",
      "country": "United States",
      "start_date": "2025-06",
      "country_code": "US"
    },
    {
      "id": 71121138,
      "url": "https://sumble.com/l/person/J9uHFZVthyOd",
      "linkedin_url": "https://www.linkedin.com/in/loumanglass",
      "name": "Lou Manglass",
      "job_title": "Back End Engineer",
      "job_function": "Software Engineer",
      "job_level": "Individual Contributor",
      "location": "Athens, Georgia, United States",
      "country": "United States",
      "start_date": "2024-09",
      "country_code": "US"
    }
  ]
}

Last updated