Overview
Kitsu is a JSON:API-compliant anime and manga tracking platform that lets you search titles, manage user libraries, and fetch detailed series metadata. While powerful, its OAuth 2.0 requirement makes it more appropriate for building full applications than quick experiments. Beginners who already understand OAuth can use it to build anime tracker or recommendation apps.
Beginner Tip
You can search anime and manga without authentication using GET /anime?filter[text]=. Only write operations (saving to user library) require OAuth. Explore the unauthenticated endpoints first.
Measurement Record
What actually happened when we called this API from our own infrastructure. Every value below was recorded by the request, not copied from the provider's documentation.
- Request
- GET https://kitsu.io/api/edge/anime?filter[text]=Attack+on+Titan&page[limit]=5
- Result
- HTTP 200 · application/vnd.api+json · 27,914 bytes · compressed
- Response time
- 434 ms (median of 3) · fastest 373 ms
- Transport
- TLSv1.3 · TLS_AES_256_GCM_SHA384 · certificate issued by Google Trust Services
- Browser CORS
- Allowed — Access-Control-Allow-Origin: *
- Served by
- cloudflare
- Recorded
- 2026-08-10
Fields Returned
Top-level fields present in the response we captured, with the type and value we actually received.
| Field | Type | Value received |
|---|---|---|
| id | string | 7442 |
| type | string | anime |
| links | object | {1 fields} |
| attributes | object | {1 fields} |
| relationships | object | {1 fields} |
Captured Response
Captured from a real request to https://kitsu.io/api/edge/anime?filter[text]=Attack+on+Titan&page[limit]=5 on 2026-08-10. Long arrays and nested objects are truncated to keep the shape readable.
{
"data": [
{
"id": "7442",
"type": "anime",
"links": {
"…": "(1 more fields)"
},
"attributes": {
"…": "(31 more fields)"
},
"relationships": {
"…": "(16 more fields)"
}
}
],
"meta": {
"count": 32
},
"links": {
"first": "https://kitsu.io/api/edge/anime?filter%5Btext%5D=Attack+on+Titan&page%5Blimit%5D=5&page%5Boffset%5D=0",
"next": "https://kitsu.io/api/edge/anime?filter%5Btext%5D=Attack+on+Titan&page%5Blimit%5D=5&page%5Boffset%5D=5",
"last": "https://kitsu.io/api/edge/anime?filter%5Btext%5D=Attack+on+Titan&page%5Blimit%5D=5&page%5Boffset%5D=27"
}
} Field Reference
id Unique Kitsu identifier for the anime resource. Implementation Example
Calls a real endpoint of this API. Replace any placeholder credentials with your own key.
const url = "https://kitsu.io/api/edge/anime?filter[text]=Attack+on+Titan&page[limit]=5";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"Authorization": "Bearer YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
How This API Fails
We deliberately sent this API a broken request and recorded exactly what came back on 2026-08-10. Knowing the shape of an error before you hit it makes error handling much easier to write.
{
"errors": [
{
"title": "Invalid field value",
"detail": "apisscore-nonexistent-path is not a valid value for id.",
"code": "103",
"status": "400"
}
]
} Common Errors & Troubleshooting
Generated guidance based on this API's documentation, not observed by us. Treat it as a starting point and check against the provider's own error reference.
Measured Score Breakdown
Live HTTP request to the API endpoint
Fully tested on Aug 10, 2026
Technical Specifications
Recipes Using Kitsu
Build something with this API. Each recipe includes step-by-step instructions and code outlines.
Similar APIs
View All →AniAPI
AniAPI aggregates anime data from multiple sources and lets you search titles, retrieve episode lists, and sync watch progress with popular trackers.
AniList
AniList exposes a GraphQL API covering anime and manga metadata, user lists, reviews, and social features.
MyAnimeList
MyAnimeList (MAL) is the most popular anime and manga tracking site, and its official API lets you search titles, manage user watchlists, and retrieve community statistics.
Shikimori
Shikimori is a Russian-language anime and manga tracking platform whose API exposes anime metadata, user rates, forums, and calendar data.
AniDB
AniDB is one of the oldest and most detailed anime databases, tracking episode titles, staff, characters, and file-level metadata used by media players and subtitle groups.