Endpoint Playground
Test Crawlora's Anime Airing Schedule 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/airing-schedule" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| page | integer | No | 1-based page number, default 1 | |
| per_page | integer | No | Results per page, default 20, max 50 |
{
"code": 200,
"msg": "OK",
"data": {
"page": 1,
"per_page": 20,
"has_next_page": true,
"results": [
{
"episode": 149,
"airing_at": 1704900600,
"time_until_airing": 259200,
"media": {
"id": 151970,
"title": {
"romaji": "Xian Ni"
},
"format": "ONA"
}
}
]
}
}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 upcoming anime episode broadcasts (episode number, air time, countdown, and the normalized title), soonest first, paginated. Credential-free public AniList data.
{
"code": 200,
"msg": "OK",
"data": {
"page": 1,
"per_page": 20,
"has_next_page": true,
"results": [
{
"episode": 149,
"airing_at": 1704900600,
"time_until_airing": 259200,
"media": {
"id": 151970,
"title": {
"romaji": "Xian Ni"
},
"format": "ONA"
}
}
]
}
}curl "https://api.crawlora.net/api/v1/anime/airing-schedule" \
-H "x-api-key: $CRAWLORA_API_KEY"