> ## Documentation Index
> Fetch the complete documentation index at: https://docs.medera.info/llms.txt
> Use this file to discover all available pages before exploring further.

# Pagination

> Cursor-based pagination

All list endpoints use cursor-based pagination.

```bash theme={"system"}
GET /api/patients?limit=50&cursor=eyJpZCI6...

```

Response:

```json theme={"system"}
{
  "data": [...],
  "next_cursor": "eyJpZCI6...",
  "has_more": true
}

```
