Skip to main content
GET
/
api
/
v2
/
exports
/
queries
/
{jobId}
Get a query export job's status
curl --request GET \
  --url https://mcp.zeroclick.ai/api/v2/exports/queries/{jobId} \
  --header 'Authorization: Bearer <token>'
{
  "jobId": "<string>",
  "status": "processing",
  "startTime": "<string>",
  "endTime": "<string>",
  "createdAt": "<string>",
  "error": "<string>",
  "days": [
    {
      "date": "<string>",
      "downloadUrl": "<string>",
      "expiresAt": "<string>",
      "partial": true,
      "error": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://developer.zeroclick.ai/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Tenant API Key with developer:data:read scope. Create an API key from https://developer.zeroclick.ai/ by navigating to API Keys and selecting the Organization API Keys tab. This is a private API key and must be stored securely - never expose it in public-facing code or client-side applications.

Path Parameters

jobId
string
required

Job ID returned from the initiate call.

Response

Export job status.

jobId
string
required
status
enum<string>
required
Available options:
processing,
completed,
failed
startTime
string | null
required
endTime
string | null
required
createdAt
string | null
required
error
string | null
required
days
object[] | null
required