Skip to main content
GET
/
experiments
/
api
/
quota
Get experiment quota
curl --request GET \
  --url https://api.pictify.io/experiments/api/quota \
  --header 'Authorization: Bearer <token>'
{
  "plan": "standard",
  "quota": {
    "ab_test": {
      "used": 2,
      "limit": 5
    },
    "smart_link": {
      "used": 2,
      "limit": 5
    },
    "scheduled": {
      "used": 2,
      "limit": 5
    }
  },
  "maxVariants": 5,
  "analyticsRetentionDays": 90
}

Authorizations

Authorization
string
header
required

API key obtained from the Pictify dashboard

Response

200 - application/json

Quota information

plan
string
Example:

"standard"

quota
object
maxVariants
integer
Example:

5

analyticsRetentionDays
integer
Example:

90