Get import status
/v1/data/status/{requestId}
Retrieve the status and progress of an import.
Path Parameters
requestId: string
The request ID returned from the Add endpoint
Returns
createdAt: string
ISO timestamp when the request was created
objectCount: number
Number of objects in the request
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"
}