Skip to main content
POST
/
api
/
v2
/
impressions
Track offer impressions
curl --request POST \
  --url https://zeroclick.dev/api/v2/impressions \
  --header 'Content-Type: application/json' \
  --data '
{
  "ids": [
    "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "b2c3d4e5-f6a7-8901-bcde-f23456789012"
  ]
}
'
{
  "error": {
    "message": "Too many requests to this resource"
  }
}

Body

application/json
ids
string[]
required

Array of offer IDs that were displayed to the user. These are the "id" values from the offers response.

Response

Impressions recorded successfully (no content returned)