Endpoint Playground
Test Crawlora's Anime 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/anime/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": "Frieren",
"page": 1,
"per_page": 10,
"total": 1,
"has_next_page": false,
"results": [
{
"id": 154587,
"id_mal": 52991,
"type": "ANIME",
"title": {
"romaji": "Sousou no Frieren",
"english": "Frieren: Beyond Journey's End"
},
"format": "TV",
"status": "FINISHED",
"average_score": 91,
"popularity": 456965,
"episodes": 28,
"season": "FALL",
"season_year": 2023,
"genres": [
"Adventure",
"Drama",
"Fantasy"
],
"studios": [
"MADHOUSE"
],
"site_url": "https://anilist.co/anime/154587"
}
]
}
}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 anime by free-text query. Credential-free public anime data from AniList. Returns normalized entries: titles, scores, popularity, format, status, season, genres, tags, and studios.
{
"code": 200,
"msg": "OK",
"data": {
"query": "Frieren",
"page": 1,
"per_page": 10,
"total": 1,
"has_next_page": false,
"results": [
{
"id": 154587,
"id_mal": 52991,
"type": "ANIME",
"title": {
"romaji": "Sousou no Frieren",
"english": "Frieren: Beyond Journey's End"
},
"format": "TV",
"status": "FINISHED",
"average_score": 91,
"popularity": 456965,
"episodes": 28,
"season": "FALL",
"season_year": 2023,
"genres": [
"Adventure",
"Drama",
"Fantasy"
],
"studios": [
"MADHOUSE"
],
"site_url": "https://anilist.co/anime/154587"
}
]
}
}curl "https://api.crawlora.net/api/v1/anime/search?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"