Skip to main content
POST
/
api
/
v1
/
people
/
search
Search people
curl --request POST \
  --url https://developer.thehog.ai/api/v1/people/search \
  --header 'Content-Type: application/json' \
  --header 'X-Access-Key: <api-key>' \
  --header 'X-Secret-Key: <api-key>' \
  --data '
{
  "query": "VP Engineering at hiring B2B SaaS companies in SF",
  "limit": 25,
  "includeSignals": false,
  "includeContacts": false,
  "filters": {
    "titles": [
      "<string>"
    ],
    "locations": [
      "<string>"
    ],
    "industries": [
      "<string>"
    ],
    "employeeCount": {
      "min": 1,
      "max": 1
    },
    "signals": [
      "<string>"
    ],
    "company": {
      "names": [
        "<string>"
      ],
      "domains": [
        "<string>"
      ],
      "linkedinUrls": [
        "<string>"
      ],
      "industries": [
        "<string>"
      ],
      "employeeCount": {
        "min": 1,
        "max": 1
      },
      "signals": [
        "<string>"
      ]
    }
  }
}
'
{
  "id": "<string>",
  "operationId": "<string>",
  "pollUrl": "<string>",
  "meta": {}
}

POST /api/v1/people/search

Search for people by role, seniority, company, and more. Async.
Discover people matching your ICP using natural-language queries or structured filters. This is an async endpoint — returns 202 Accepted with a poll URL.

Example

curl -X POST https://developer.thehog.ai/api/v1/people/search \
  -H "X-Access-Key: ak_xxxxxxxxxxxxxxxx" \
  -H "X-Secret-Key: sk_xxxxxxxxxxxxxxxx" \
  -H "Content-Type: application/json" \
  -d '{"query": "VP of Engineering at fintech startups in NYC", "limit": 10}'

Authorizations

X-Access-Key
string
header
required

The public API key from the Credentials page.

X-Secret-Key
string
header
required

The API secret shown when the credential is created.

Headers

Idempotency-Key
string

Optional. Reusing the same key for the same organization returns the existing queued operation.

Body

application/json
query
string
required
Maximum string length: 500
Example:

"VP Engineering at hiring B2B SaaS companies in SF"

limit
number
default:25
Required range: 1 <= x <= 100
includeSignals
boolean
default:false
includeContacts
boolean
default:false
filters
object

Response

People search accepted. Poll the returned URL for results.

id
string
required
operationId
string
required
status
enum<string>
required
Available options:
queued
pollUrl
string
required
meta
object
required