Overview
Waifu.im hosts a curated archive of over 4,000 anime-style character images organized by tags like maid, uniform, wink, or ero. No API key is required to fetch images, making it one of the simplest anime image APIs to use. It is popular for Discord bots and web projects that need tagged anime images on demand.
Beginner Tip
Use GET https://api.waifu.im/search/?included_tags=maid to fetch random images by tag. The is_nsfw parameter defaults to false, so all results are safe for work unless you explicitly set it to true.
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://api.waifu.im/tags/
- Result
- HTTP 200 · application/json · 3,526 bytes · compressed
- Response time
- 689 ms (median of 3) · fastest 272 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 |
|---|---|---|
| items | array | [1 item] |
| pageNumber | integer | 1 |
| totalPages | integer | 1 |
| totalCount | integer | 20 |
| maxPageSize | integer | -1 |
| defaultPageSize | integer | 30 |
| hasPreviousPage | boolean | false |
| hasNextPage | boolean | false |
Captured Response
Captured from a real request to https://api.waifu.im/tags/ on 2026-08-10. Long arrays and nested objects are truncated to keep the shape readable.
{
"items": [
{
"id": 12,
"name": "Waifu",
"slug": "waifu",
"description": "A female anime/manga character.",
"reviewStatus": "Accepted",
"creatorId": null,
"imageCount": 4276
}
],
"pageNumber": 1,
"totalPages": 1,
"totalCount": 20,
"maxPageSize": -1,
"defaultPageSize": 30,
"hasPreviousPage": false,
"hasNextPage": false
} Implementation Example
Calls a real endpoint of this API. Replace any placeholder credentials with your own key.
const url = "https://waifu.im/docs";
const response = await fetch(url);
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.
{
"type": "https://tools.ietf.org/html/rfc9110#section-15.5.5",
"title": "Not Found",
"status": 404,
"detail": "The requested endpoint was not found.",
"instance": "/tags/apisscore-nonexistent-path",
"traceId": "00-82c89be9eab5c861b877aca6bc8d4106-7376826593340ad4-00"
} 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
Similar APIs
View All →AnimeChan
⭐ Beginner's PickAnimeChan serves a database of 10,000+ anime quotes with character and anime title metadata.
AnimeFacts
⭐ Beginner's PickAnimeFacts is a simple REST API with over 100 trivia facts about popular anime series, accessible by an anime slug name.
AnimeNewsNetwork
⭐ Beginner's PickAnime News Network exposes its encyclopedia data as a free XML API, covering anime and manga titles, cast, staff, genres, and release information maintained by professional journalists.
Catboy
⭐ Beginner's PickCatboy serves random neko (anime cat-person) images and GIFs across several mood categories with no API key required.
Jikan
⭐ Beginner's PickJikan is an unofficial REST API for MyAnimeList that lets you fetch anime and manga data without OAuth setup.