Endpoint Playground
Test Crawlora's Manga 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/manga/rankings?sort=TRENDING_DESC&format=MANGA&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. |
| format | string | No | MANGA | Format filter: MANGA, NOVEL, ONE_SHOT. |
| 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",
"format": "MANGA",
"page": 1,
"per_page": 20,
"total": 5000,
"has_next_page": true,
"results": [
{
"id": 105398,
"title": {
"romaji": "Chainsaw Man"
},
"format": "MANGA",
"average_score": 84
}
]
}
}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 manga ranking. Credential-free public AniList data. Filter by format, genre, and status.
{
"code": 200,
"msg": "OK",
"data": {
"sort": "POPULARITY_DESC",
"format": "MANGA",
"page": 1,
"per_page": 20,
"total": 5000,
"has_next_page": true,
"results": [
{
"id": 105398,
"title": {
"romaji": "Chainsaw Man"
},
"format": "MANGA",
"average_score": 84
}
]
}
}curl "https://api.crawlora.net/api/v1/manga/rankings" \
-H "x-api-key: $CRAWLORA_API_KEY"