Get / reset API token
Authentication
Get / reset API token
POST /api/user-api/auth: exchange your account credentials for a Bearer token
POST
Get / reset API token
POST your account email and password to receive a fresh API token.
Parameters
No authorization required for this endpoint. Use your email and password instead.Body parameters
Your EclipseProxy account email.
Your EclipseProxy account password.
Response
"success" when the token was generated.Human-readable confirmation.
Rate limit
1 request per 5 minutes per account and per IP. Store the token and reuse it: don’t call this on every request.Example response
When to rotate
- Token was exposed (committed to a repo, leaked in logs, shared)
- Routine security rotation
- A teammate left and may have had access
Errors
- 401: wrong email or password
- 429: rate-limited (you hit the 1-per-5-min cap)
- 5xx: internal error; retry with exponential backoff

