Skip to main content
GET
/
api
/
v1
/
characters
List Characters
curl --request GET \
  --url https://api.example.com/api/v1/characters
{
  "status": "success",
  "data": [
    {
      "id": "...",
      "name": "Levi Ackerman",
      "slug": "levi-ackerman",
      "description": "Captain of the Survey Corps...",
      "role": "main"
    }
  ],
  "pagination": {
    "cursor": "eyJ...",
    "has_more": true
  }
}

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

limit
integer
default:"20"
Results per page (max 50)
cursor
string
Pagination cursor
{
  "status": "success",
  "data": [
    {
      "id": "...",
      "name": "Levi Ackerman",
      "slug": "levi-ackerman",
      "description": "Captain of the Survey Corps...",
      "role": "main"
    }
  ],
  "pagination": {
    "cursor": "eyJ...",
    "has_more": true
  }
}