Login Endpoints
Endpoints for authentication and session management. These are the core endpoints needed to establish an authenticated connection to the API.
Authentication:
platformlogincreates the session; other endpoints require an active session.
Endpoints
| Endpoint | Method | Description |
|---|---|---|
| platformlogin | POST | Authenticate with Steam and create a session |
| logout | POST | End the current session |
| readSession | GET | Read/validate current session state |
Authentication Flow
- Create an encrypted Steam app ticket with
Buffer.from("RLINK") - Call
platformloginwith the Base64+URI encoded ticket - Store the returned
sessionIDfor subsequent requests - Include
sessionIDandconnect_idin all authenticated requests