Authentication / Tokensintermediate

OAuth Token Response JSON Example

A realistic OAuth token exchange response with token types, expiry, and refresh support.

Real-world use case: Use this for OAuth docs, SDK examples, and login flow payloads.
1{
2 "access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
3 "token_type": "Bearer",
4 "expires_in": 3600,
5 "refresh_token": "rt_662190d2",
6 "scope": "profile.read orders.read"
7}

Where this shape shows up in production

OAuth integrations
Login APIs
SDK documentation

Related examples