Skip to content

ID Token.

An OIDC credential, always a signed JWT, that conveys identity claims about the authenticated user from the authorization server to the client.

Common mistake: using ID tokens to authorize API calls. The ID token is for identity, not authorization, its audience is the client, not the resource server. APIs validate access tokens, not ID tokens. Mixing the two is a classic OIDC misconfiguration.

Common questions

What's the difference between an ID token and an access token?

Should I use ID tokens for API auth?

What claims does an ID token carry?

Related terms

In the guides

Last updated 2026-05-07.