Beta

List non-channel conversations created through the OpenAI-compatible v1 API.

GET /api/v1/conversations
Auth
Bearer API token with chat.completions or api.full.
Quota
Read-only endpoint; not counted against monthly API request quota.

Parameters

Parameters Required Description
model Optional Filter by agent id. Tokens bound to one agent are limited to that agent.
limit Optional 1-100 results. Defaults to 20.
after Optional Object id from first_id or last_id for cursor pagination.
order Optional desc by default. Use asc for oldest first.

Request

curl "https://api.manyfold.ai/api/v1/conversations?limit=20" \
  -H "Authorization: Bearer $MF_API_TOKEN"

Response

  • Returns an OpenAI-style list envelope with object, data, first_id, last_id, and has_more.
  • Each item has id, model, title, created_at, and updated_at.

Errors