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);
API
List Chats
Get a paginated list of chats for your team
GET
/
api
/
chat
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.
Headers
string
required
Bearer token with your Deeptrace API key. Format:
Bearer <your_api_key>.Query Parameters
integer
default:"1"
Page number (1-based).
integer
default:"20"
Items per page (max 100).
boolean
default:"false"
Filter to only your chats.
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);