{ "opencollection": "1.0.0", "info": { "name": "Limitless Developer Chats API", "version": "1.0.0" }, "items": [ { "info": { "name": "Chats", "type": "folder" }, "items": [ { "info": { "name": "Returns a list of chats.", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/v1/chats", "params": [ { "name": "cursor", "value": "", "type": "query", "description": "Cursor for pagination to retrieve the next set of chats." }, { "name": "direction", "value": "", "type": "query", "description": "Sort direction for chats." }, { "name": "limit", "value": "", "type": "query", "description": "Maximum number of chats to return. Upper limit is 100." }, { "name": "timezone", "value": "", "type": "query", "description": "IANA timezone specifier. If missing, UTC is used." }, { "name": "isScheduled", "value": "", "type": "query", "description": "When true, only return chats generated by scheduled prompts; when false, only non-scheduled chats." }, { "name": "globalPromptId", "value": "", "type": "query", "description": "Filter to chats generated by scheduled prompts that match the given globalPromptId (see curated prompts)." } ] }, "docs": "Returns a list of chats (ask-ai conversations) for the authenticated user. Pagination is supported." }, { "info": { "name": "Returns a single chat by ID.", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/v1/chats/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Unique identifier of the chat to retrieve." }, { "name": "timezone", "value": "", "type": "query", "description": "IANA timezone specifier. If missing, UTC is used." } ] }, "docs": "Returns a specific chat (ask-ai conversation) by its unique identifier. Users can only access their own chats or public chats." }, { "info": { "name": "Deletes a single chat by ID.", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/v1/chats/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Unique identifier of the chat to delete." } ] }, "docs": "Permanently deletes a specific chat (ask-ai conversation) by its unique identifier. Users can only delete their own chats." } ] } ], "bundled": true }