FIREANIME API
Browse API97 operations
POST

Unsubscribe

Unsubscribe removes the authenticated user's notification registration for a specific anime.

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

Request

UnsubscribeRequest

UnsubscribeRequestapi.v1.subscription.UnsubscribeRequest3 fields

UnsubscribeRequest identifies the subscription to remove.

animeId
uint32

Unique database identifier for the anime.

language
string

The language identifier of the subscription being removed.

allLanguages
bool

If true, removes every language subscription for the anime.

Request JSON
{
  "animeId": 1,
  "language": "de",
  "allLanguages": 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.