Endpoint Playground
Test Crawlora's Anime Rankings API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/anime/rankings?sort=TRENDING_DESC&season=WINTER&format=TV&status=FINISHED" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| sort | string | No | TRENDING_DESC | Order: TRENDING_DESC, POPULARITY_DESC, SCORE_DESC, FAVOURITES_DESC, START_DATE_DESC, UPDATED_AT_DESC. Default TRENDING_DESC. |
| season | string | No | WINTER | Airing season filter: WINTER, SPRING, SUMMER, FALL. |
| season_year | integer | No | Airing year filter, 1940-2100. | |
| format | string | No | TV | Format filter: TV, TV_SHORT, MOVIE, SPECIAL, OVA, ONA, MUSIC. |
| genre | string | No | Genre filter, e.g. Fantasy. | |
| status | string | No | FINISHED | Status filter: FINISHED, RELEASING, NOT_YET_RELEASED, CANCELLED, HIATUS. |
| page | integer | No | 1-based page number, default 1 | |
| per_page | integer | No | Results per page, default 20, max 50 |
{
"code": 200,
"msg": "OK",
"data": {
"sort": "POPULARITY_DESC",
"genre": "Fantasy",
"format": "TV",
"status": "FINISHED",
"page": 1,
"per_page": 20,
"total": 5000,
"has_next_page": true,
"results": [
{
"id": 16498,
"title": {
"romaji": "Shingeki no Kyojin"
},
"format": "TV",
"average_score": 85,
"popularity": 900000
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns a filterable, sorted anime ranking. Credential-free public AniList data. Filter by season, year, format, genre, and status.
{
"code": 200,
"msg": "OK",
"data": {
"sort": "POPULARITY_DESC",
"genre": "Fantasy",
"format": "TV",
"status": "FINISHED",
"page": 1,
"per_page": 20,
"total": 5000,
"has_next_page": true,
"results": [
{
"id": 16498,
"title": {
"romaji": "Shingeki no Kyojin"
},
"format": "TV",
"average_score": 85,
"popularity": 900000
}
]
}
}curl "https://api.crawlora.net/api/v1/anime/rankings" \
-H "x-api-key: $CRAWLORA_API_KEY"