Anime Quotes API
# API Overview The **Anime Quotes API** is a REST API that provides a collection of quotes from popular anime series. Retrieve quotes by ID, get a random quote, search by character name or anime title, or browse all available character names and anime titles in the database. All quote endpoints require authentication via an API key. --- # Documentation ## Endpoints All endpoints are prefixed…
Anime Quotes API endpoints
| Method | Endpoint | Description |
|---|---|---|
| Quotes | ||
| GET |
getCharacters /api/v1/characters |
Returns an alphabetically sorted list of all distinct character names in the database. |
| GET |
getTitles /api/v1/titles |
Returns an alphabetically sorted list of all distinct anime titles in the database. |
| GET |
getQuotesByTitle /api/v1/title/{title} |
Returns a paginated list of quotes from the given anime series. The match is **case-sensitive** and must be the exact title as stored (e.g. `Fullmetal Alchemist Brotherhood`, not… |
| GET |
getRandomQuotes /api/v1/random |
Returns one or more randomly selected anime quotes. Use the `limit` parameter to control how many quotes are returned in a single request. |
| GET |
getQuotesByCharacter /api/v1/character/{character} |
Returns a paginated list of quotes said by the given character. The match is **case-sensitive** and must be the exact character name as stored (e.g. `Edward Elric`, not `edward… |
Anime Quotes API pricing
| Plan | Price | Rate limit | Quotas |
|---|---|---|---|
| BASIC | Free | 60 / minute |
|
| PRO Recommended | $4.99 / month | 60 / minute |
|
| ULTRA | $14.99 / month | 120 / minute |
|
| MEGA | $29.99 / month | 300 / minute |
|