Endpoint Playground
Test Crawlora's Manga Search 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/search?query=<query>&sort=SEARCH_MATCH" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| query | string | Yes | Search text | |
| sort | string | No | SEARCH_MATCH | Ordering: SEARCH_MATCH, POPULARITY_DESC, SCORE_DESC, TRENDING_DESC, FAVOURITES_DESC, START_DATE_DESC. Default SEARCH_MATCH. |
| 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": {
"query": "Berserk",
"page": 1,
"per_page": 10,
"total": 50,
"has_next_page": true,
"results": [
{
"id": 30002,
"id_mal": 2,
"type": "MANGA",
"title": {
"romaji": "Berserk"
},
"format": "MANGA",
"status": "RELEASING",
"average_score": 92,
"genres": [
"Action",
"Adventure",
"Fantasy",
"Horror"
],
"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.
Searches manga by free-text query. Credential-free public manga data from AniList. Returns normalized entries: titles, scores, popularity, format, status, chapters, volumes, genres, and tags.
{
"code": 200,
"msg": "OK",
"data": {
"query": "Berserk",
"page": 1,
"per_page": 10,
"total": 50,
"has_next_page": true,
"results": [
{
"id": 30002,
"id_mal": 2,
"type": "MANGA",
"title": {
"romaji": "Berserk"
},
"format": "MANGA",
"status": "RELEASING",
"average_score": 92,
"genres": [
"Action",
"Adventure",
"Fantasy",
"Horror"
],
"site_url": "https://anilist.co/manga/30002"
}
]
}
}curl "https://api.crawlora.net/api/v1/manga/search?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"