14 · Shipping & Collaboration

JWT

JSON Web Token

A compact signed token that carries claims (who you are, what you can do, when it expires). APIs often expect it in an Authorization header. Treat it like a password in transit.

Concrete example

An API call sends `Authorization: Bearer <jwt>` after login.

Why it matters

A common shape for session or service credentials in web apps.