Skip to main content
POST
/
api
/
v2
/
exports
/
impressions
Initiate a impression export job
curl --request POST \
  --url https://mcp.zeroclick.ai/api/v2/exports/impressions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "startTime": "<string>",
  "endTime": "<string>"
}
'
{
  "jobId": "<string>",
  "status": "processing"
}

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.

Body

application/json
startTime
string
required

Start of export range (ISO 8601 timestamp)

endTime
string
required

End of export range (ISO 8601 timestamp)

Response

Export job accepted and queued for processing.

jobId
string
required
status
enum<string>
required
Available options:
processing,
completed,
failed