APIReference
User
GET
/v1/me
Get the authenticated user
Authorization
AuthorizationRequiredBearer <token>
Personal access token (sv_live_…) — represents you and carries every scope, so no scope is required for this call. Best for your own scripts and internal tools. Generate one at https://savee.com/developers/.
In: header
AuthorizationRequiredBearer <token>
OAuth access token (sv_at_…) — obtained on one of your users’ behalf and limited to the scopes they approved. Use this when you’re building a product other people sign into with Savee. See https://docs.savee.com/api/oauth.
Missing the scope below returns 403 with a WWW-Authenticate: Bearer error="insufficient_scope" header naming it.
In: header
Scope: profile:read
| Status code | Description |
|---|---|
200 | Authenticated user. |
400 | Invalid input. |
401 | Missing or invalid Bearer token. |
402 | Authenticated but the user has no active subscription. |
403 | The Public API is not available on this account. |
429 | Rate limit exceeded. Retry after the number of seconds in Retry-After. |
500 | Unexpected server error. |