Cascade
Auth

Get Auth Claims

Return JWT claims for current token

Authenticated utility endpoint. Call with Authorization: Bearer <token> to verify the token is accepted by middleware and return decoded claims.

GET
/auth/claims
AuthorizationBearer <token>

JWT token obtained from POST /auth endpoint

In: header

Response Body

application/json

text/plain

curl -X GET "https://engine.cascade.cooking/auth/claims"
{
  "account": "0xe1c03ec3bcf509b3e8e63abcd03edc661ffe6a78",
  "exp": 0,
  "iat": 0
}
"Invalid token"