Access Token

API Securityintermediate

// Definition

A short-lived credential a client sends with each request to access protected resources, often a JWT carried in an Authorization header. Because it grants access, it must be transmitted securely, expire reasonably, and never contain sensitive data in a readable payload. QA checks: a missing, invalid or expired access token is rejected with 401, and a token belonging to one user cannot access another user's data.

// Related terms