Cliquify Developer
  1. Authentication
  • Overview
    • Getting started
  • other
    • Integrations
    • Appendix
      • OAuth Scopes
      • Error Responses
    • Templates
      • Get Tags
      • Get Templates
    • User
      • Get Authenticated User
    • Authentication
      • Overview
      • Generate Access Token
        POST
      • Introspect Access Token
        POST
      • Revoke Token
        POST
    • Get Brand Assets
      GET
  • Authentication
    • Overview
    • Token lifecycle
    • OAuth scopes
    • Get an access token
      POST
    • Introspect a token
      POST
    • Revoke a token
      POST
  1. Authentication

Introspect Access Token

Developing
POST
{{baseUrl}}oauth/introspect
Verify the validity of an access (or refresh) token and return metadata about it. Useful to confirm if a token is active and trusted.

Request

Header Params

Body Params application/x-www-form-urlencodedRequired

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request POST '{{baseUrl}}oauth/introspect' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'token=ACCESS_TOKEN'
Response Response Example
{
  "active": true,
  "client_id": "gtc9...",
  "user_id": 12345,
  "scopes": ["profile:read", "..."],
  "expires_at": "2026-07-16 11:45:32"
}
Modified at 2026-04-08 11:49:55
Previous
Generate Access Token
Next
Revoke Token
Built with