CallDocumentation Index
Fetch the complete documentation index at: https://docs.drssed.app/llms.txt
Use this file to discover all available pages before exploring further.
POST /auth/guest to instantly create a temporary session without requiring any registration. The endpoint returns a JWT access token and a refresh token you can use right away to make authenticated requests. Guest sessions are suitable for onboarding flows where you want users to explore your app before committing to a full account.
Endpoint
| Field | Value |
|---|---|
| Method | POST |
| Path | /auth/guest |
| Auth required | No |
| Rate limit | 5 per hour |
Request body
No request body is required.Response fields
Status: 201 CreatedJWT access token. Include this in the
Authorization: Bearer <token> header on subsequent requests.Number of seconds until the access token expires.
Token used to obtain a new access token when the current one expires. See POST /auth/refresh.
Example
cURL
Response
Guest accounts can be upgraded to full registered accounts at any time using POST /auth/upgrade. Upgrading preserves all data created during the guest session.