# 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")
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.aicrisk.com/api-overview/chat-apis/pagination-getconversation-s/example-page.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
