> For the complete documentation index, see [llms.txt](https://docs.aicrisk.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.aicrisk.com/api-overview/chat-apis/pagination-getconversation-s/example-page.md).

# Example Page

### 🧑‍💼 Example: Fetching Page 4 with Filter

**Scenario**: You want to load Page 4 of a conversation list filtered by the keyword `“sales”`, with 25 results per page.

#### Using the API directly:

```http
GET /api/Chat/GetConversations/abc123?results=25&skip=75&metadatasearch=sales
```

* `page = 4`
* `results = 25`
* `skip = (4 - 1) * 25 = 75`

#### With the Pagination Helper:

```python
fetch_conversations(agentid="abc123", page=4, results=25, metadatasearch="sales")
```
