Skip to main content
POST
/
api
/
v1
/
people
/
batch
Get People
curl --request POST \
  --url https://api.openfunnel.dev/api/v1/people/batch \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <x-api-key>' \
  --header 'X-User-ID: <x-user-id>' \
  --data '
{
  "people_ids": [
    123
  ]
}
'
{
  "people": [
    {
      "person_id": 123,
      "person_name": "<string>",
      "person_role": "<string>",
      "person_email": "<string>",
      "person_location": "<string>",
      "person_linkedin_url": "<string>",
      "joined_company_at": "<string>",
      "person_crm_status": "<string>",
      "person_phone_number": "<string>",
      "person_team_name": "<string>",
      "department": "<string>",
      "seniority": "<string>",
      "account_id": 123,
      "account_name": "<string>",
      "account_domain": "<string>",
      "reasoning": "<string>",
      "direct_signals": [
        {
          "signal_type": "<string>",
          "signal_link": "<string>",
          "true_signal_date": "<string>"
        }
      ],
      "connected_crm": "<string>",
      "crm_contact_id": "<string>",
      "crm_owner_id": "<string>"
    }
  ],
  "total_count": 123
}

Headers

X-API-Key
string
required
X-User-ID
string
required

Body

application/json
people_ids
integer[]
required

List of people IDs to get details for

Response

Successful Response

people
PersonBatchDetail · object[]
required
total_count
integer
required