Skip to main content
GET
/
api
/
v1
/
quotes
/
search
Search Quotes
curl --request GET \
  --url https://api.example.com/api/v1/quotes/search
{
  "status": "success",
  "data": [
    {
      "id": "...",
      "quote_text": "A dream is worth less than nothing if you don't have someone else to share it.",
      "anime": { "id": "...", "name": "One Piece", "slug": "one-piece" },
      "character": { "id": "...", "name": "Kaidou", "slug": "kaidou", "role": "antagonist" },
      "tags": ["dreams"]
    }
  ]
}

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

q
string
required
Search query (2–200 characters)
limit
integer
default:"20"
Results per page (max 50)
{
  "status": "success",
  "data": [
    {
      "id": "...",
      "quote_text": "A dream is worth less than nothing if you don't have someone else to share it.",
      "anime": { "id": "...", "name": "One Piece", "slug": "one-piece" },
      "character": { "id": "...", "name": "Kaidou", "slug": "kaidou", "role": "antagonist" },
      "tags": ["dreams"]
    }
  ]
}