Savee Developers
Reference

User

GET
/v1/me

Get the authenticated user

/v1/me

The Authorization access token

Authorization

Authorization
Required
Bearer <token>

Personal access token in the form sv_live_\<24 chars\>. Generate one at https://savee.com/developer/.

In: header

Status codeDescription
200Authenticated user.
400Invalid input.
401Missing or invalid Bearer token.
402Authenticated but the user has no active subscription.
403The Public API is not enabled for this account.
429Rate limit exceeded.
curl -X GET "http://localhost:3060/v1/me"

{
  "id": "string",
  "username": "string",
  "name": "string",
  "url": "http://example.com",
  "avatar_url": "http://example.com",
  "plan": {
    "active": true,
    "tiers": [
      "string"
    ]
  }
}