Skip to main content
GET
Poll results

Headers

X-API-Key
string
required

Path Parameters

job_id
string
required

The job_id returned by the bulk submit endpoint.

Query Parameters

cursor
string | null

Page to read, e.g. page_0003 (use the next_cursor from the previous response). Omit for the first page.

limit
integer
default:100

Accepted for forward-compatibility; page size is fixed at write time, so this is currently ignored.

Required range: 1 <= x <= 100

Response

Job status, manifest, and one page of results.

Combined job status + one page of results. Check status for completion (not next_cursor), and walk pages with next_cursor.

job_id
string
required
status
string
required

pending, running, cancelling, cancelled, completed, or failed. cancelling is transient (a cancel was requested); the job then settles to terminal cancelled with a partial manifest of the pages already delivered.

manifest
BulkLookalikeManifest · object | null

Job summary; populated once the job completes.

error_message
string | null

Failure reason when status is failed.

rows
InstantTraitSearchResult · object[]

Companies in the requested page (same shape as Search Lookalikes results).

page
string | null

Name of the page returned, e.g. page_0003.

next_cursor
string | null

Pass as ?cursor= to fetch the next page; null on the last available page.

count
integer
default:0

Number of rows in this page.

processed
integer | null

Live progress: qualified companies delivered so far toward the requested limit. Null until the job starts producing progress.

progress_message
string | null

Coarse stage label, e.g. retrieving_companies / qualifying_companies / reranking_companies / completed / cancelled.