> ## 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.

# List Characters

> Retrieve a paginated list of anime characters

## Query Parameters

<ParamField query="limit" type="integer" default="20">
  Results per page (max 50)
</ParamField>

<ParamField query="cursor" type="string">
  Pagination cursor
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "status": "success",
    "data": [
      {
        "id": "...",
        "name": "Levi Ackerman",
        "slug": "levi-ackerman",
        "description": "Captain of the Survey Corps...",
        "role": "main"
      }
    ],
    "pagination": {
      "cursor": "eyJ...",
      "has_more": true
    }
  }
  ```
</ResponseExample>
