Skip to main content
POST
/
auth
/
public
/
authenticate
Authenticate with username and password
curl --request POST \
  --url https://api.trlyr.com/auth/public/authenticate \
  --header 'Content-Type: application/json' \
  --data '
{
  "password": "<string>",
  "username": "<string>"
}
'
{
  "access_token": "<string>",
  "expires_in": 123,
  "id_token": "<string>",
  "refresh_token": "<string>",
  "scope": "<string>",
  "token_type": "<string>"
}

Body

application/json

Login credentials

Login credentials

password
string
username
string

Response

OK

access_token
string
expires_in
integer
id_token
string
refresh_token
string
scope
string
token_type
string
Last modified on June 30, 2026