Skip to main content
GET
/
api
/
v1
/
quotes
/
random
Random Quote
curl --request GET \
  --url https://api.example.com/api/v1/quotes/random
{
  "status": "success",
  "data": {
    "id": "a1b2c3d4-...",
    "quote_text": "Whatever you lose, you'll find it again. But what you throw away you'll never get back.",
    "anime": { "id": "...", "name": "Fullmetal Alchemist: Brotherhood", "slug": "fullmetal-alchemist-brotherhood" },
    "character": { "id": "...", "name": "Khamrakh", "slug": "khamrakh", "role": "supporting" },
    "episode": null,
    "language": "en",
    "tags": ["wisdom", "loss"],
    "created_at": "2026-02-20T14:00:00Z"
  }
}
Returns a single randomly-selected quote. Great for bots, widgets, or daily quote features.
This is a public endpoint — no API key required! When called without a key, requests are rate-limited to 10/min and 100/day per IP. Providing an API key grants your plan’s higher limits.
{
  "status": "success",
  "data": {
    "id": "a1b2c3d4-...",
    "quote_text": "Whatever you lose, you'll find it again. But what you throw away you'll never get back.",
    "anime": { "id": "...", "name": "Fullmetal Alchemist: Brotherhood", "slug": "fullmetal-alchemist-brotherhood" },
    "character": { "id": "...", "name": "Khamrakh", "slug": "khamrakh", "role": "supporting" },
    "episode": null,
    "language": "en",
    "tags": ["wisdom", "loss"],
    "created_at": "2026-02-20T14:00:00Z"
  }
}