Production-ready endpoints. JSON in, JSON out. JWT auth. Rate-limited per account.
Base URL
https://api.fanarena.eu/v1Auth
Bearer JWT
Rate limit
100 req / min
Region
EU only
/v1/auth/signupCreate a new account with email double opt-in.
curl -X POST https://api.fanarena.eu/v1/auth/signup \ -H "Authorization: Bearer $FANARENA_TOKEN" \ -H "Content-Type: application/json"
/v1/auth/sessionIssue a session JWT after verification.
curl -X POST https://api.fanarena.eu/v1/auth/session \ -H "Authorization: Bearer $FANARENA_TOKEN" \ -H "Content-Type: application/json"
/v1/auth/logoutRevoke the current session.
curl -X POST https://api.fanarena.eu/v1/auth/logout \ -H "Authorization: Bearer $FANARENA_TOKEN" \ -H "Content-Type: application/json"