Saltar al contenido principal
POST
/
oauth
/
v3
/
token
/
introspect
Punto de terminación de la introspección de token
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>'
{
  "active": true,
  "app_id": 123,
  "client_id": "<string>",
  "expires_in": 123,
  "hub_id": 123,
  "is_private_distribution": true,
  "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
  },
  "token": "<string>",
  "token_type": "<string>",
  "token_use": "access_token",
  "user_id": 123,
  "hub_domain": "<string>",
  "user": "<string>"
}

Documentation Index

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

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

Supported products

Cuerpo

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

Respuesta

successful operation

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