Authentication

Get current user information

GET
/auth/me
AuthorizationBearer <token>

Token-based authentication using access tokens.

In: header

Response Body

Examples

curl -X GET "https://loading/auth/me"
{
  "contract": "string",
  "credits": 0,
  "email": "string",
  "groups": [
    "string"
  ],
  "last_active": "string",
  "name": "string",
  "surname": "string",
  "username": "string",
  "verified": true
}
Empty