Retrieve a paginated list of anime.
https://api.i-as.dev/api/anime?page={value}
Parameter | Type | Description |
---|---|---|
page |
int |
The page number to retrieve. |
{
"results": [
{
"title": "string",
"url": "url",
"status": "string",
"type": "string",
"image": "base64"
}
],
"pagination": {
"currentPage": "value",
"hasPrevPage": "boolean",
"hasNextPage": "boolean",
"prevPageUrl": "value",
"nextPageUrl": "string"
}
}
Retrieve details for a specific anime episode.
https://api.i-as.dev/api/anime/episode/{slug}
Parameter | Type | Description |
---|---|---|
slug |
string |
Unique episode identifier. |
{
"result": {
"title": "string",
"videoUrl": "url",
"image": "base64",
"status": "string",
"studio": "string",
"released": "string",
"season": "string",
"type": "string",
"censor": "string",
"director": "string",
"producers": "string",
"description": "string"
}
}
Retrieve detailed information about an anime.
https://api.i-as.dev/api/anime/detail/{slug}
Parameter | Type | Description |
---|---|---|
slug |
string |
Unique anime identifier. |
{
"result": {
"title": "string",
"image": "base64",
"status": "string",
"studio": "string",
"released": "string",
"season": "string",
"type": "string",
"censor": "string",
"director": "string",
"producers": "string",
"postedBy": "string",
"updatedOn": "string",
"description": "string",
"episodes": [
{
"epNo": "string",
"epTitle": "string",
"epDate": "string",
"epUrl": "url"
}
]
}
}
Search for anime by keyword.
https://api.i-as.dev/api/anime/search?q={query}&page={value}
Parameter | Type | Description |
---|---|---|
q |
string |
Search query. |
page |
int |
Page number. |
{
"results": [
{
"title": "string",
"url": "url",
"image": "base64",
"status": "string",
"type": "string"
}
],
"pagination": {
"currentPage": "value",
"hasNextPage": "boolean",
"hasPrevPage": "boolean"
}
}
Filter anime by alphabetical order.
https://api.i-as.dev/api/anime/a-z?show={alphabet}&page={value}
Parameter | Type | Description |
---|---|---|
show |
string |
Alphabet (A-Z). |
page |
int |
Page number. |
{
"results": [
{
"title": "string",
"url": "url",
"image": "base64",
"status": "string",
"type": "string"
}
],
"pagination": {
"currentPage": "value",
"hasNextPage": "boolean"
},
"azList": [
{
"label": "string",
"url": "url"
}
]
}
Retrieve a list of anime genres.
https://api.i-as.dev/api/anime/genres
{
"genres": [
{
"name": "string",
"url": "url"
}
]
}
Retrieve a list of anime for a specific genre.
https://api.i-as.dev/api/anime/genres/{genre}?page={value}
Parameter | Type | Description |
---|---|---|
genre |
string |
Genre name or slug. |
page |
int |
Page number. |
{
"results": [
{
"title": "string",
"url": "url",
"image": "base64",
"status": "string",
"type": "string"
}
],
"pagination": {
"currentPage": "value",
"hasNextPage": "boolean"
}
}
Retrieve a list of anime statuses.
https://api.i-as.dev/api/anime/status
[
{
"title": "string",
"url": "url"
}
]
Retrieve anime by status.
https://api.i-as.dev/api/anime/status/{status}?page={value}
Parameter | Type | Description |
---|---|---|
status |
string |
Anime status (e.g., ongoing, completed). |
page |
int |
Page number. |
{
"results": [
{
"title": "string",
"url": "url",
"image": "base64",
"status": "string",
"type": "string"
}
],
"pagination": {
"currentPage": "value",
"totalPages": "value",
"totalResults": "value",
"hasNextPage": "boolean",
"hasPrevPage": "boolean"
}
}