POST
/
v1
/
analytics
/
verifications
curl --request POST \
  --url https://api.unprice.dev/v1/analytics/verifications \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "customerId": "cus_1H7KQFLr7RepUyQBKdnvY",
  "projectId": "project_1H7KQFLr7RepUyQBKdnvY",
  "range": "24h"
}'
{
  "verifications": [
    {
      "projectId": "<string>",
      "customerId": "<string>",
      "entitlementId": "<string>",
      "featureSlug": "<string>",
      "count": 123,
      "p95_latency": 123,
      "max_latency": 123,
      "latest_latency": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Body of the request for the get verifications

The body is of type object.

Response

200
application/json

The result of the get verifications

The response is of type object.