# Anime



MyAnimeList through Jikan — the all-time top chart and every season's lineup.



## Top Anime

MyAnimeList's all-time top chart — the ranked list every recommendation starts from.

- Method: `GET`
- Path: `/v1/entertainment/anime/top`

**Parameters**

| Name | Type | | Description |
|---|---|---|---|
| `limit` | integer | optional | 1 to 25 titles. |
| `max_age` | integer (seconds) | optional | Ask for data no older than this. Clamped to the product's own floor, so it can narrow the window but never force a refresh on every call. |

**Example request**

```bash
curl https://api.diraz.ae/v1/entertainment/anime/top \
  -H "Authorization: Bearer drz_live_…"
```

**Example response**

```json
{
  "data": {
    "total": 30000,
    "anime": [
      {
        "id": 52991,
        "title": "Sousou no Frieren",
        "titleEnglish": "Frieren: Beyond Journey's End",
        "url": "https://myanimelist.net/anime/52991",
        "type": "TV",
        "episodes": 28,
        "status": "Finished Airing",
        "airedFrom": "2023-09-29",
        "score": 9.3,
        "genres": ["Adventure", "Drama", "Fantasy"]
      }
    ]
  },
  "meta": { "request_id": "req_7Q2fK4mZ", "as_of": "2026-08-22T04:05:00.000Z", "age_seconds": 42, "next_update_at": "2026-08-22T05:05:00.000Z" }
}
```

## Seasonal Anime

The seasonal chart — what's airing in any season, the calendar every fan follows.

- Method: `GET`
- Path: `/v1/entertainment/anime/seasonal`

**Parameters**

| Name | Type | | Description |
|---|---|---|---|
| `year` | integer | required | e.g. `2026`. |
| `season` | string | required | `winter`, `spring`, `summer`, or `fall`. |
| `limit` | integer | optional | 1 to 25 titles. |
| `max_age` | integer (seconds) | optional | Ask for data no older than this. Clamped to the product's own floor, so it can narrow the window but never force a refresh on every call. |

**Example request**

```bash
curl https://api.diraz.ae/v1/entertainment/anime/seasonal \
  -H "Authorization: Bearer drz_live_…"
```

**Example response**

```json
{
  "data": {
    "total": 250,
    "anime": [
      {
        "id": 55555,
        "title": "Example Anime",
        "type": "TV",
        "episodes": 12,
        "status": "Currently Airing",
        "airedFrom": "2026-07-01",
        "score": 8.1,
        "genres": ["Action"]
      }
    ]
  },
  "meta": { "request_id": "req_7Q2fK4mZ", "as_of": "2026-08-22T04:05:00.000Z", "age_seconds": 42, "next_update_at": "2026-08-22T05:05:00.000Z" }
}
```