POST
/
api
/
v1
/
jwt
/
verify
curl --request POST \
  --url https://prod.oneloop.ai/api/v1/jwt/verify \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "jwt": "<string>",
  "rateLimitConfig": {
    "id": "<string>",
    "limit": 1,
    "interval": "<string>"
  }
}'
{
  "status": "VALID",
  "payload": {},
  "aud": "<string>",
  "exp": 1
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
jwt
string
required
rateLimitConfig
object

Response

200
application/json
The verification result
status
enum<string>
required
Available options:
VALID,
INVALID
payload
object
required
exp
integer
required
Required range: x > 0
aud
string