This is an API authentification documentation page
Creating access token
To create API access credentials, you need to go to Profile settings. Scroll down to the “Personal access tokens” section and generate a new token.

Sending authentificated API request
To send authenticated API request, you need to provide an Authorization header in the request.
Authorization: Bearer <your-access_token>
Example request to get a current session
curl -XGET -H 'Authorization: Bearer <your-access_token>' -H "Content-type: application/json" 'https://api.adminix.xyz/api/v1/auth/me'