Endpoint Playground
Test Crawlora's Anime 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/anime/title/<id>/recommendations" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | AniList anime 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": 154587,
"page": 1,
"per_page": 10,
"total": 500,
"has_next_page": true,
"results": [
{
"rating": 1144,
"media": {
"id": 21827,
"title": {
"romaji": "Violet Evergarden"
},
"format": "TV",
"average_score": 85
}
}
]
}
}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 community-recommended titles for an anime, each with a recommendation rating and the full normalized media entry, paginated. Credential-free public AniList data.
{
"code": 200,
"msg": "OK",
"data": {
"id": 154587,
"page": 1,
"per_page": 10,
"total": 500,
"has_next_page": true,
"results": [
{
"rating": 1144,
"media": {
"id": 21827,
"title": {
"romaji": "Violet Evergarden"
},
"format": "TV",
"average_score": 85
}
}
]
}
}curl "https://api.crawlora.net/api/v1/anime/title/<id>/recommendations" \
-H "x-api-key: $CRAWLORA_API_KEY"