GET
/
me
curl --request GET \
  --url https://api.streamskill.pro/v1/me \
  --header 'Authorization: Bearer <token>'
{
  "username": "admin",
  "email": "Streamskillpro@gmail.com",
  "language": "en",
  "currency": "usd",
  "balance": 9999,
  "discount": 5
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Accept-Language
enum<string>
default:
en

The language of the response

Available options:
en,
ru

Response

200
application/json
OK
username
string
Example:

"admin"

email
string
Example:

"Streamskillpro@gmail.com"

language
enum<string>
default:
en
Available options:
en,
ru
currency
enum<string>
Available options:
usd,
rub
Example:

"usd"

balance
number
Example:

9999

discount
integer
Example:

5