Skip to main content
POST
Mint a token

Authorizations

Authorization
string
header
required

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

Path Parameters

appID
string
required

The id of the app the request refers to. An application's unique identifier.

Examples:

"54e9ujn"

"fvua38g"

Body

application/json
claims
object
required

The JWT claims payload to sign. Any claims are accepted and are passed through as-is. The exp claim is capped at 24 hours in the future and defaults to 24 hours from now when omitted; iat and jti are populated automatically when omitted.

Example:

Response

Created

token
string
required

The signed JWT.

Example:

"eyJhbGciOiJSUzI1NiIsImtpZCI6ImtleS0xIn0.eyJzdWIiOiJ1c2VyLTEyMyJ9.signature"

expires_at
string<date-time>
required

The time at which the token expires.

Example:

"2026-06-17T12:00:00Z"