Skip to main content
POST
/
v1
/
intent
/
audiences
/
query
Find people interested in topics, filtered by ICP
curl --request POST \
  --url https://api.aws53.cloud/v1/intent/audiences/query \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "audienceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "topicIds": [
    123
  ],
  "minScore": 70,
  "maxScore": 100,
  "minTopicOverlap": 1,
  "filters": {
    "companyIndustry": [
      "<string>"
    ],
    "seniority": [
      "<string>"
    ],
    "companySize": [
      "<string>"
    ],
    "department": [
      "<string>"
    ],
    "state": "<string>",
    "companyRevenueRange": [
      "<string>"
    ],
    "ageRange": [
      "<string>"
    ],
    "gender": "<string>",
    "isB2b": "y",
    "jobTitle": "<string>",
    "hasBusinessEmail": true,
    "hasPersonalEmail": true,
    "hasLinkedin": true,
    "hasPhone": true,
    "companyDomain": "<string>",
    "companyName": "<string>"
  },
  "date": "<string>",
  "limit": 50,
  "cursor": "<string>"
}
'
{
  "data": [
    {
      "hem": "<string>",
      "intentScore": 123,
      "topicId": 123,
      "email": "<string>",
      "company": "<string>",
      "jobTitle": "<string>"
    }
  ],
  "meta": {
    "count": 123,
    "totalCount": 123,
    "nextCursor": "<string>",
    "hasMore": true,
    "status": "<string>",
    "cacheKey": "<string>",
    "dataDate": "<string>"
  }
}

Authorizations

X-API-Key
string
header
required

Organization API key (sk_...). Get yours from Settings > API Keys in the dashboard.

Body

application/json
audienceId
string<uuid>
topicIds
integer[]

Required unless audienceId is provided (config loaded from saved audience).

Required array length: 1 - 10 elements
minScore
integer
default:70
Required range: 1 <= x <= 100
maxScore
integer
default:100
Required range: 1 <= x <= 100
minTopicOverlap
integer
default:1
Required range: 1 <= x <= 10
filters
object
date
string

Data date (YYYY-MM-DD) to browse a specific daily run. Defaults to latest.

Pattern: ^\d{4}-\d{2}-\d{2}$
limit
integer
default:50
Required range: 1 <= x <= 100
cursor
string | null

Response

Matched audience (from cache)

data
object[]
required
meta
object
required