Skip to main content
POST
/
oauth2
/
introspect
Introspect an Access Token
curl --request POST \
  --url https://public-api.stora.co/oauth2/introspect \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "token": "v88ZtIS248uE3c7ZhDdEbOfZkHSO69BxBhzPmEeCx2I"
}
'
{
  "active": true,
  "scope": "public.contact:read public.contact:write",
  "client_id": "ei5bQqk_qUqan8MYMarc2-Eqb48vdB-oc_qBBUjG7co",
  "token_type": "Bearer",
  "exp": 3480477720,
  "iat": 1740235260
}

Authorizations

Authorization
string
header
required

Bearer Token necessary to use API

Body

application/json

OAuth 2 Introspect Request

token
string

OAuth 2 Access Token.

Response

200 - application/json

Access Token Introspect

OAuth 2 Introspect Response

active
boolean
scope
any
client_id
any
token_type
any
iat
integer
exp
integer