Endpoint Playground
Test Crawlora's Manga Detail 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>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | AniList manga id | |
| mal | boolean | No | Enrich with the MyAnimeList community score (adds one fetch; omitted when the title has no MAL id) |
{
"code": 200,
"msg": "OK",
"data": {
"id": 30002,
"id_mal": 2,
"type": "MANGA",
"title": {
"romaji": "Berserk",
"native": "ベルセルク"
},
"format": "MANGA",
"status": "RELEASING",
"average_score": 92,
"favourites": 60000,
"genres": [
"Action",
"Adventure",
"Drama",
"Fantasy",
"Horror",
"Psychological"
],
"site_url": "https://anilist.co/manga/30002"
}
}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 normalized manga by AniList id: titles, MyAnimeList id, scores, popularity, favourites, format, status, chapters, volumes, genres, ranked tags, dates, description, and images. Pass mal=true to additionally enrich the response with the MyAnimeList community score (mal block: score on a 0-10 scale, plus scored-by count), scraped credential-free from the public MAL page. Credential-free public AniList data.
{
"code": 200,
"msg": "OK",
"data": {
"id": 30002,
"id_mal": 2,
"type": "MANGA",
"title": {
"romaji": "Berserk",
"native": "ベルセルク"
},
"format": "MANGA",
"status": "RELEASING",
"average_score": 92,
"favourites": 60000,
"genres": [
"Action",
"Adventure",
"Drama",
"Fantasy",
"Horror",
"Psychological"
],
"site_url": "https://anilist.co/manga/30002"
}
}curl "https://api.crawlora.net/api/v1/manga/title/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"