Issue a token
/auth/token Requires email + password Exchange an AniTrack email and password for a bearer token. Returns the plain-text token once — store it securely. Subject to the strict auth rate limit (5 requests / minute / IP + email).
Parameters
| Name | In | Type | Notes |
|---|---|---|---|
email* | body | string | |
password* | body | string | |
device_name* | body | string | Shown on your settings page so you can identify the client. Max 120 chars. |
curl -X POST https://anitrack.app/api/v1/auth/token \
-H "Content-Type: application/json" \
-d '{"email":"[email protected]","password":"…","device_name":"My Integration"}'