List the calling user's agent conversations
Returns a paginated list of conversations created by the bearer-token’s user, newest
first (by created_at).
Scope: per-user, not per-company
Results are filtered by both company_id and user_id from the bearer token —
peers in the same company are not visible. The endpoint never returns 404; the
natural empty state is records: [] with total_records: 0.
Pagination
Uses the standard page / per_page query parameters. Default per_page is 50.
The response envelope carries prev_page, current_page, next_page,
total_records, total_pages, and the records array — same shape every other
paginated Narrative endpoint uses.
Permission
agent_conversations resource with read verb.
Example
curl "$API/agents/conversations?page=1&per_page=20" \
-H "Authorization: Bearer $TOKEN"
Documentation Index
Fetch the complete documentation index at: https://docs.narrative.io/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Number of page. Stars from the first (1) page.
Number of records to return.
Response
Paginated list of the caller's conversations, newest first. Empty records if
the caller has no conversations yet.
Returned by GET /agents/conversations. Page envelope wrapping the caller's
conversations, newest first. Same shape every other paginated Narrative endpoint
uses.
The number of requested page.
1
Total amount of accessible Access Rules
15000
Total amount of pages.
10
Page of conversations, ordered by created_at descending.
The number of previous page (if exists). Also can refer to the latest existing page if non-existing page was requested.
1
The number of next page (if exists).
42

