Endpoint Playground
Test Crawlora's Manga Staff 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/title/<id>/staff" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | AniList manga 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": 30002,
"page": 1,
"per_page": 10,
"total": 500,
"has_next_page": true,
"results": [
{
"id": 96879,
"name": "Kentarou Miura",
"role": "Story & Art (vols 1-41)",
"occupations": [
"Mangaka"
],
"site_url": "https://anilist.co/staff/96879"
},
{
"id": 112447,
"name": "Kouji Mori",
"role": "Supervisor (vols 41- )",
"occupations": [
"Mangaka"
],
"site_url": "https://anilist.co/staff/112447"
}
]
}
}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 the people credited on a manga -- author, artist, assistants, and per-language translation and lettering credits -- with each person's role, occupations and image, paginated. Manga roles carry detail anime credits do not: a long-running series records volume ranges per credit (e.g. "Story & Art (vols 1-41)", "Supervisor (vols 41- )"). An anime id here returns 404 -- use GET /anime/title/{id}/staff for those. Credential-free public AniList data.
{
"code": 200,
"msg": "OK",
"data": {
"id": 30002,
"page": 1,
"per_page": 10,
"total": 500,
"has_next_page": true,
"results": [
{
"id": 96879,
"name": "Kentarou Miura",
"role": "Story & Art (vols 1-41)",
"occupations": [
"Mangaka"
],
"site_url": "https://anilist.co/staff/96879"
},
{
"id": 112447,
"name": "Kouji Mori",
"role": "Supervisor (vols 41- )",
"occupations": [
"Mangaka"
],
"site_url": "https://anilist.co/staff/112447"
}
]
}
}curl "https://api.crawlora.net/api/v1/manga/title/<id>/staff" \
-H "x-api-key: $CRAWLORA_API_KEY"