Passer au contenu principal
POST
/
oauth
/
v3
/
token
/
introspect
Point de terminaison d'introspection de jeton
curl --request POST \
  --url https://api.hubapi.com/oauth/v3/token/introspect \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data 'client_id=<string>' \
  --data 'client_secret=<string>' \
  --data 'token=<string>' \
  --data 'token_type_hint=<string>'
{
  "token_use": "access_token",
  "active": true,
  "token": "<string>",
  "hub_id": 123,
  "user_id": 123,
  "client_id": "<string>",
  "app_id": 123,
  "scopes": [
    "<string>"
  ],
  "signed_access_token": {
    "appId": 123,
    "expiresAt": 123,
    "hubId": 123,
    "hublet": "<string>",
    "installingUserId": 123,
    "isPrivateDistribution": true,
    "isServiceAccount": true,
    "isUserLevel": true,
    "newSignature": "<string>",
    "scopeToScopeGroupPks": "<string>",
    "scopes": "<string>",
    "signature": "<string>",
    "trialScopeToScopeGroupPks": "<string>",
    "trialScopes": "<string>",
    "userId": 123
  },
  "expires_in": 123,
  "is_private_distribution": true,
  "token_type": "<string>",
  "user": "<string>",
  "hub_domain": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://developers.hubspot.fr/docs/llms.txt

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

Supported products

Corps

application/x-www-form-urlencoded
client_id
string
client_secret
string
token
string
token_type_hint
string

Réponse

successful operation

token_use
enum<string>
défaut:access_token
requis
Options disponibles:
access_token
active
boolean
requis
token
string
requis
hub_id
integer<int32>
requis
user_id
integer<int32>
requis
client_id
string
requis
app_id
integer<int32>
requis
scopes
string[]
requis
signed_access_token
object
requis
expires_in
integer<int64>
requis
is_private_distribution
boolean
requis
token_type
string
requis
user
string
hub_domain
string
Last modified on May 11, 2026