Skip to main content
POST
/
v3
/
live-data
/
searches
/
preview
Preview a Live Data search
curl --request POST \
  --url https://api.reply.io/v3/live-data/searches/preview \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "filters": {
    "accountListIds": [
      {
        "value": 2
      }
    ],
    "industries": [
      {
        "value": "<string>"
      }
    ],
    "companyLocations": [
      {
        "value": "<string>"
      }
    ],
    "companySizes": [],
    "headcountGrowth": {
      "min": 1,
      "max": 1
    },
    "accountKeywords": {
      "values": [
        {
          "value": "<string>"
        }
      ]
    },
    "isHiringOnLinkedIn": true,
    "contactLocations": [
      {
        "value": "<string>"
      }
    ],
    "jobTitles": [
      {
        "value": "<string>"
      }
    ],
    "departments": [
      {
        "value": "<string>"
      }
    ],
    "seniorities": [
      "<string>"
    ],
    "contactKeywords": {
      "values": [
        {
          "value": "<string>"
        }
      ]
    }
  },
  "maxPeoplePerCompany": 1
}
'
{
  "jobId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}

Authorizations

Authorization
string
header
required

Authenticate every request with a Bearer token. Pass your Reply API key in the Authorization header:

Authorization: Bearer <your-api-key>

Get your API key from the Reply dashboard: Settings → API Key.

Body

application/json

Filters to preview before running a full Live Data search.

filters
Live Data filters · object
required

Account- and contact-level filter configuration for a Live Data search.

Most collections are capped at 25 items. accountKeywords and contactKeywords are always present and non-null in responses even when empty ({ "values": [], "type": "or" }).

maxPeoplePerCompany
integer
default:1

Maximum contacts to consider per company. Optional; defaults to 1 when omitted.

Required range: x >= 1

Response

Preview accepted; poll the returned job for progress and results

jobId
string<uuid>
required

Background job id; poll GET /v3/background-jobs/{id}.