Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl "https://api.deeptrace.com/api/chat?page=1&count=10" \ -H "Authorization: Bearer <your_api_key>"
import requests response = requests.get( "https://api.deeptrace.com/api/chat", headers={"Authorization": "Bearer <your_api_key>"}, params={"page": 1, "count": 10} ) data = response.json() print(data)
const response = await fetch( "https://api.deeptrace.com/api/chat?page=1&count=10", { headers: { "Authorization": "Bearer <your_api_key>" }, } ); const data = await response.json(); console.log(data);
Get a paginated list of chats for your team
Bearer <your_api_key>