Get Ingestion Status

Poll the current state of the latest top account list ingestion.

Returns the current state of the latest top account list ingestion for the workspace. Poll this endpoint after calling POST /api/v2/top-account-list or POST /api/v2/top-account-list/accounts to track progress.

Get ingestion status

GET/api/v2/top-account-list/status

Example request

curl "https://api.getsillage.com/api/v2/top-account-list/status" \
  -H "Authorization: Bearer $SILLAGE_API_KEY"

Example response

{
  "state": "completed",
  "total_accounts": 150
}

Response fields

FieldTypeDescription
statestringCurrent state: queued, processing, completed, or failed.
total_accountsintegerNumber of accounts processed in the last ingestion. 0 before any ingestion runs.

On this page