Skip to main content
GET
/
api
/
v2
/
exports
/
clicks
List recent click export jobs
curl --request GET \
  --url https://mcp.zeroclick.ai/api/v2/exports/clicks \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "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.

Query Parameters

limit
integer
default:10

Number of jobs to return (default 10, max 20)

Required range: 1 <= x <= 20

Response

List of recent export jobs.

data
object[]
required