FIREANIME API
Browse API97 operations
POST

Subscribe

Subscribe registers the authenticated user to receive notifications for new releases of a specific anime.

/api.v1.subscription.SubscriptionService/Subscribe Bearer required
01

Request

SubscribeRequest

SubscribeRequestapi.v1.subscription.SubscribeRequest4 fields

SubscribeRequest identifies the anime and preferred language for notification alerts.

animeId
uint32

Unique database identifier for the anime.

language
string

Preferred language or region for the release alerts (e.g., "de", "en").

languagesarray
string[]

Preferred languages for release alerts. If provided, this supersedes language.

inAppNotificationsEnabled
bool

Whether release notifications should create in-app notification rows.

Request JSON
{
  "animeId": 1,
  "language": "de",
  "languages": [
    "de"
  ],
  "inAppNotificationsEnabled": false
}
02

Response

SubscriptionResponse

SubscriptionResponseapi.v1.subscription.SubscriptionResponse1 fields

SubscriptionResponse confirms the result of a subscription operation.

message
string

A descriptive message indicating the result.

Example response
{
  "message": "success"
}
03

Error handling

Common failure codes

unauthenticatedThe Bearer token is missing or invalid.

invalid_argumentThe request payload failed validation.

internalThe service could not complete the operation.