Endpoint Playground
Test Crawlora's Manga Recommendations 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/title/<id>/recommendations" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | AniList manga id | |
| page | integer | No | 1-based page number, default 1 | |
| per_page | integer | No | Results per page, default 10, max 50 |
{
"code": 200,
"msg": "OK",
"data": {
"id": 30013,
"page": 1,
"per_page": 10,
"total": 500,
"has_next_page": true,
"results": [
{
"rating": 691,
"media": {
"id": 30687,
"type": "MANGA",
"title": {
"romaji": "HUNTER×HUNTER"
},
"site_url": "https://anilist.co/manga/30687"
}
}
]
}
}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 the titles AniList users recommend alongside a manga, most-recommended first, each with its community rating and full title record. Recommendations can cross media types -- a manga's list may include anime -- so read each entry's own type rather than assuming manga. An anime id here returns 404 -- use GET /anime/title/{id}/recommendations for those. Credential-free public AniList data.
{
"code": 200,
"msg": "OK",
"data": {
"id": 30013,
"page": 1,
"per_page": 10,
"total": 500,
"has_next_page": true,
"results": [
{
"rating": 691,
"media": {
"id": 30687,
"type": "MANGA",
"title": {
"romaji": "HUNTER×HUNTER"
},
"site_url": "https://anilist.co/manga/30687"
}
}
]
}
}curl "https://api.crawlora.net/api/v1/manga/title/<id>/recommendations" \
-H "x-api-key: $CRAWLORA_API_KEY"