Deeptrace provides a REST API so you can trigger investigations and retrieve results from any system.Documentation Index
Fetch the complete documentation index at: https://docs.deeptrace.com/llms.txt
Use this file to discover all available pages before exploring further.
Quick Start
Trigger an investigation
Send a
POST request to /api/v1/investigate with your query. You receive an investigation_id back immediately.Poll for results
Poll
GET /api/v1/investigations/{id} until status is completed. Investigations typically complete in a couple of minutes.Endpoints
Investigations
Trigger Investigation
Start a new investigation asynchronously.
Get Investigation
Retrieve status and results of an investigation.
Chat
Send Chat Message
Send a message and get an AI-powered response.
Get Chat
Retrieve a chat with full conversation history.
List Chats
Get a paginated list of chats for your team.
Error Codes
| Status Code | Description |
|---|---|
400 | Invalid request body or missing required fields |
401 | Missing or invalid API key |
403 | Expired or revoked API key |
404 | Resource not found |
422 | Validation error |
500 | Internal server error |