Skip to content
StatusSupportDashboard

Get import status

get/v1/data/status/{requestId}

Retrieve the status and progress of an import.

Path ParametersExpand Collapse
requestId: string

The request ID returned from the Add endpoint

ReturnsExpand Collapse
createdAt: string

ISO timestamp when the request was created

objectCount: number

Number of objects in the request

status: "UPLOADING" or "INGESTING" or "COMPLETE"

Current processing status of the add request

Accepts one of the following:
"UPLOADING"
"INGESTING"
"COMPLETE"
Get import status
curl https://api.safetykit.com/v1/data/status/$REQUEST_ID \
    -H "Authorization: Bearer $SAFETYKIT_API_KEY"
{
  "createdAt": "2024-01-15T10:30:00.000Z",
  "objectCount": 150,
  "status": "INGESTING"
}
Returns Examples
{
  "createdAt": "2024-01-15T10:30:00.000Z",
  "objectCount": 150,
  "status": "INGESTING"
}