tooljar

    JWT Decoder

    Decode and inspect JSON Web Tokens

    Quick examples:

    About JWT Tokens

    JSON Web Tokens (JWT) are a compact, URL-safe means of representing claims between two parties. They consist of three parts: header, payload, and signature, separated by dots.

    JWT Structure

    • Header: Contains token type and signing algorithm
    • Payload: Contains claims (user data, expiration, etc.)
    • Signature: Verifies the token hasn't been tampered with

    Common Claims

    • iss: Issuer of the token
    • sub: Subject (user ID)
    • exp: Expiration time
    • iat: Issued at time
    • aud: Audience (intended recipient)