Endpoint Playground
Test Crawlora's Anime & Manga Character 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/anime/character/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | AniList character id |
{
"code": 200,
"msg": "OK",
"data": {
"id": 176754,
"name": "Frieren",
"native_name": "フリーレン",
"favourites": 21952,
"site_url": "https://anilist.co/character/176754",
"media": [
{
"id": 154587,
"title": {
"romaji": "Sousou no Frieren"
},
"type": "ANIME",
"format": "TV",
"role": "MAIN"
}
]
}
}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 character profile by AniList id: names, image, description, gender, age, blood type, birthday, favourites, and the titles the character appears in with their billed role. Credential-free public AniList data.
{
"code": 200,
"msg": "OK",
"data": {
"id": 176754,
"name": "Frieren",
"native_name": "フリーレン",
"favourites": 21952,
"site_url": "https://anilist.co/character/176754",
"media": [
{
"id": 154587,
"title": {
"romaji": "Sousou no Frieren"
},
"type": "ANIME",
"format": "TV",
"role": "MAIN"
}
]
}
}curl "https://api.crawlora.net/api/v1/anime/character/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"