Skip to main content
GET
/
api
/
v1
/
quotes
List Quotes
curl --request GET \
  --url https://api.example.com/api/v1/quotes
{
  "status": "success",
  "data": [
    {
      "id": "a1b2c3d4-...",
      "quote_text": "If you don't take risks, you can't create a future.",
      "anime": { "id": "...", "name": "One Piece", "slug": "one-piece" },
      "character": { "id": "...", "name": "Monkey D. Luffy", "slug": "monkey-d-luffy", "role": "main" },
      "episode": "1",
      "language": "en",
      "tags": ["motivational", "adventure"],
      "created_at": "2026-01-15T10:30:00Z"
    }
  ],
  "pagination": {
    "cursor": "eyJpZCI6...",
    "has_more": true,
    "total": 1420
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.aniquotes.myproj.xyz/llms.txt

Use this file to discover all available pages before exploring further.

Query Parameters

anime
string
Filter by anime slug (e.g., naruto, one-piece)
character
string
Filter by character slug (e.g., itachi-uchiha)
language
string
default:"en"
Filter by language code
tags
string
Comma-separated tag filter (e.g., motivational,villain)
limit
integer
default:"20"
Results per page (max 50)
cursor
string
Pagination cursor from previous response
{
  "status": "success",
  "data": [
    {
      "id": "a1b2c3d4-...",
      "quote_text": "If you don't take risks, you can't create a future.",
      "anime": { "id": "...", "name": "One Piece", "slug": "one-piece" },
      "character": { "id": "...", "name": "Monkey D. Luffy", "slug": "monkey-d-luffy", "role": "main" },
      "episode": "1",
      "language": "en",
      "tags": ["motivational", "adventure"],
      "created_at": "2026-01-15T10:30:00Z"
    }
  ],
  "pagination": {
    "cursor": "eyJpZCI6...",
    "has_more": true,
    "total": 1420
  }
}