Developer Portal
Trader APIsHTTP APIAuthentication

LoginPOST

Authenticates a client profile and returns JWT token with account information

View as Markdown
POST
/public/ticker

Request Body

application/jsonRequired
emailRequiredstring

Client profile email address

Format: "email"
passwordRequiredstring

Client profile password

curl -X POST "http://localhost:8081/api/v1/public/ticker" \
  -H "Content-Type: application/json" \
  -d '{
    "email": "client@example.com",
    "password": "password123"
  }'

Successfully authenticated

{
  "access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
  "expires_at": 1735689600,
  "accounts": [
    {
      "id": "acc_123456",
      "gid": "retail_group_1"
    }
  ]
}