Skip to Content
Code Fundi for VS Code · Cursor: install the extension →

V2: History


GET /v2/history

GET https://api.codefundi.app/v2/history

Summary: Paginated query history with optional ISO 8601 date window.

Query parameters

ParameterTypeDescription
limitintPage size 1–100, default 20.
offsetintOffset.
fromstringStart date-time (inclusive filter).
tostringEnd date-time (inclusive filter).

Responses: 200 HistoryListResponse; 401.

history.sh
curl -sS -G "https://api.codefundi.app/v2/history" \ -H "X-API-Key: YOUR_API_KEY" \ --data-urlencode "limit=20" \ --data-urlencode "offset=0" \ --data-urlencode "from=2026-01-01T00:00:00Z" \ --data-urlencode "to=2026-01-31T23:59:59Z"

GET /v2/history/{history_id}

GET https://api.codefundi.app/v2/history/{history_id}

Summary: Single history row by UUID.

Path parameter

ParameterDescription
history_idUUID of the history row.

Responses: 200 HistoryItemResponse; 401, 404.

history-item.sh
curl -sS "https://api.codefundi.app/v2/history/770e8400-e29b-41d4-a716-446655440002" \ -H "X-API-Key: YOUR_API_KEY"

GET /v2/history/conversation/{conversation_id}

GET https://api.codefundi.app/v2/history/conversation/{conversation_id}

Summary: Full ordered thread for a conversation UUID.

Path parameter

ParameterDescription
conversation_idConversation / thread UUID.

Responses: 200 ConversationResponse; 401, 404.

conversation.sh
curl -sS "https://api.codefundi.app/v2/history/conversation/880e8400-e29b-41d4-a716-446655440003" \ -H "X-API-Key: YOUR_API_KEY"
Last updated on