cURL
curl --request POST \ --url https://api.tripwirejs.com/v1/gate/agent-tokens/verify \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "agent_token": "agt_0123456789abcdefghjkmnpqrstuvwxyzABCDEF" } '
{ "data": { "valid": true, "gate_account_id": "gacct_0123456789abcdefghjkmnpqrs", "status": "active", "created_at": "2026-03-24T20:00:00.000Z", "expires_at": "2026-03-24T20:00:05.000Z" }, "meta": { "request_id": "req_cf147349a4134208aebb8c70e25fb7e1" } }
Requires Authorization: Bearer sk_* with the gate:agent_tokens:verify scope.
Send Authorization: Bearer . Gate business endpoints require sk_* secret keys. Gate workflow endpoints use gate-native bearer tokens such as gtpoll_* or agt_* where documented.
"agt_0123456789abcdefghjkmnpqrstuvwxyzABCDEF"
Agent token verification response.
Show child attributes
{ "valid": true, "gate_account_id": "gacct_0123456789abcdefghjkmnpqrs", "status": "active", "created_at": "2026-03-24T20:00:00.000Z", "expires_at": "2026-03-24T20:00:05.000Z"}
{ "request_id": "req_cf147349a4134208aebb8c70e25fb7e1"}