GET
/
v2
/
documents
/
{document_id}
cURL
curl https://tavusapi.com/v2/documents/d290f1ee-6c54-4b01-90e6-d701748f0851 \
  -H "x-api-key: YOUR_API_KEY"
{
  "uuid": "d290f1ee-6c54-4b01-90e6-d701748f0851",
  "document_name": "Important Document",
  "document_url": "https://example.com/document.pdf",
  "status": "ready",
  "created_at": "2024-01-01T12:00:00Z",
  "updated_at": "2024-01-01T12:05:00Z",
  "callback_url": "https://your-server.com/webhook",
  "tags": [
    "important",
    "meeting"
  ],
  "properties": {
    "department": "sales",
    "priority": "high"
  }
}
Retrieve detailed information about a specific document using its unique identifier.

Authorizations

x-api-key
string
header
required

Path Parameters

document_id
string
required

The unique identifier of the document to retrieve

Response

200
application/json

Document details

The response is of type object.