Skip to main content
GET
/
api
/
v1
/
people
/
find
Find People
curl --request GET \
  --url https://api.openfunnel.dev/api/v1/people/find \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 123,
      "account": {
        "id": 123,
        "name": "<string>",
        "domain": "<string>"
      },
      "full_name": "<string>",
      "title": "<string>",
      "seniority": "<string>",
      "department": "<string>",
      "linkedin_url": "<string>",
      "country": "<string>",
      "region": "<string>",
      "city": "<string>"
    }
  ],
  "pagination": {
    "page": 123,
    "limit": 123,
    "total_count": 123,
    "has_more": true
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.openfunnel.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Send your API key as Authorization: Bearer <api_key>.

Query Parameters

vertical_id
integer
required

Vertical ID to search within

Required range: x >= 1
event_type_id
integer

Optional event type ID filter

Required range: x >= 1
account_id
integer

Optional account ID filter

Required range: x >= 1

Search by person name, title, or account

Required string length: 1 - 200
seniority
string[]

Repeat the query param to include multiple seniority values

department
string[]

Repeat the query param to include multiple departments

country
string[]

Repeat the query param to include multiple people countries

page
integer
default:1

1-indexed page number

Required range: x >= 1
limit
integer
default:20

Maximum results to return (1-100)

Required range: 1 <= x <= 100

Response

Successful Response

data
object[]
required
pagination
object
required