List Episodes
Episodes
List Episodes
Retrieve a paginated list of episodes for a specific anime
GET
List Episodes
Overview
This endpoint returns a list of episodes for a given anime ID with pagination support. Episodes include video URLs, thumbnails, titles, and descriptions.Authentication
This endpoint does not require authentication.
Rate Limiting
This endpoint is protected by rate limiting middleware:- Default limit: 100 requests per 60 seconds
- Returns
429 Too Many Requestswhen limit is exceeded - Includes
Retry-Afterheader in rate limit responses
Query Parameters
The MyAnimeList (MAL) ID of the anime. This is a required parameter.Example:
52991 (for One Piece)The page number for pagination. Must be greater than 0.Example:
1Response
Array of episode objects
Unique identifier for the episode
MyAnimeList ID of the parent anime
Episode number within the series
URL to the video stream for this episode
Thumbnail or preview image URL for the episode
Episode title (if available)
Episode description or synopsis (if available)
Air date or release date of the episode (if available)
Example Request
Example Response
Error Responses
Missing ID Parameter
Status Code:400 Bad Request
Invalid Page Number
Status Code:400 Bad Request
Rate Limit Exceeded
Status Code:429 Too Many Requests
Number of seconds to wait before making another request
Server Error
Status Code:500 Internal Server Error
Implementation Details
This endpoint uses Redis caching to improve performance and reduce database load. Cached responses are automatically invalidated based on TTL (Time To Live) settings.
Related Endpoints
- Get Episode - Retrieve a specific episode by MAL ID and episode number
- Get Anime - Get detailed information about an anime
