curl --request GET \
--url https://api.getfernand.com/conversations \
--header 'X-API-Key: <api-key>'{
"data": [
{
"id": 12345,
"contact_id": 789,
"subject": "Question about billing",
"status": "OPENED",
"last_update": "2026-01-21T14:30:00Z",
"tags": [
1,
5,
12
],
"recipients": [
{
"id": 12345,
"contact_id": 789,
"kind": "cc",
"conversation_id": 456
}
],
"agent_id": 42,
"channel_id": 1,
"snooze_until": "2026-01-22T09:00:00Z",
"cursor": "cur_1234567890"
}
],
"cursor": "<string>"
}curl --request GET \
--url https://api.getfernand.com/conversations \
--header 'X-API-Key: <api-key>'{
"data": [
{
"id": 12345,
"contact_id": 789,
"subject": "Question about billing",
"status": "OPENED",
"last_update": "2026-01-21T14:30:00Z",
"tags": [
1,
5,
12
],
"recipients": [
{
"id": 12345,
"contact_id": 789,
"kind": "cc",
"conversation_id": 456
}
],
"agent_id": 42,
"channel_id": 1,
"snooze_until": "2026-01-22T09:00:00Z",
"cursor": "cur_1234567890"
}
],
"cursor": "<string>"
}Retrieves a paginated list of conversations for the authenticated organization. Supports filtering by status, agent assignment, tags, and full-text search. Results can be ordered by priority, date, or longest wait time. Pagination is cursor-based for efficient traversal of large datasets.Documentation Index
Fetch the complete documentation index at: https://developers.getfernand.com/llms.txt
Use this file to discover all available pages before exploring further.
Maximum number of conversations to return per page.
3 <= x <= 250Search query string. Supports filtering by status, agent, tags, and keywords. Examples:
Pagination cursor from the previous response to fetch the next page.
Sort order for conversations (priority, oldest, newest, or longest).
priority, oldest, newest, longest Was this page helpful?