API ReferenceAuthentication API
Create guest user account
Creates a temporary guest user account and returns JWT tokens. Guest users have limited access and can be upgraded to full accounts later.
Response Body
application/json
application/json
curl -X POST "https://loading/auth/guest-login"{}{
"code": "string",
"error": "string",
"message": "string",
"request_id": "string"
}Create API key POST
Creates a new API key for the authenticated user. API keys provide programmatic access without requiring user credentials.
Refresh access token POST
Exchanges a valid refresh token for a new access token. Refresh token must be provided in Authorization header or refresh_token cookie.