Skip to main content
GET
/
users
/
{user_id}
/
entitlements
Retrieve entitlements
curl --request GET \
  --url https://api.qonversion.io/v3/users/{user_id}/entitlements \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "plus",
      "active": true,
      "started": 1652438020,
      "expires": 1654215637,
      "source": "stripe",
      "product": {
        "product_id": "main",
        "subscription": {
          "current_period_type": "normal",
          "renew_state": "will_renew"
        }
      }
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://documentation.qonversion.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use your Project Key from the Qonversion dashboard (Project Settings -> Project Keys -> Project Key).

Production keys have no prefix; keys prefixed with test_ target the sandbox environment.

Example (sandbox): Bearer test_PV77YHL7qnGvsdmpTs7gimsxUvY-Znl2 Example (production): Bearer JFPATc4VaaWYsfurml3qZ4zsmNw0VfWH

Path Parameters

user_id
string
required

Qonversion User ID

Response

Entitlements retrieved

data
object[]