Skip to main content
GET
https://agent.usedari.com
/
documents
/
{bundle_id}
curl https://agent.usedari.com/documents/550e8400-e29b-41d4-a716-446655440000 \
  -H "X-API-Key: YOUR_API_KEY"
{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "status": "completed",
  "structured_documents": [
    {
      "filename": "application.pdf",
      "structured_content": {
        "applicant_name": "Jane Smith",
        "business_name": "Smith LLC",
        "address": {
          "street": "123 Main St",
          "city": "Portland",
          "state": "OR",
          "zip": "97201"
        },
        "estimated_revenue": 150000
      }
    }
  ],
  "error": null,
  "created_at": "2026-01-15T10:30:00Z"
}
Returns the current status and structured data of a document bundle created via Upload Documents.

Path Parameters

bundle_id
string
required
Document bundle UUID

Headers

X-API-Key
string
required
Organization API key

Response Fields

id
string
Bundle UUID
status
string
Processing status: pending, processing, completed, or failed
structured_documents
array
Array of extracted document data (only present when completed). Each entry contains:
error
string
Error message if status is failed
created_at
string
ISO 8601 creation timestamp
curl https://agent.usedari.com/documents/550e8400-e29b-41d4-a716-446655440000 \
  -H "X-API-Key: YOUR_API_KEY"
{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "status": "completed",
  "structured_documents": [
    {
      "filename": "application.pdf",
      "structured_content": {
        "applicant_name": "Jane Smith",
        "business_name": "Smith LLC",
        "address": {
          "street": "123 Main St",
          "city": "Portland",
          "state": "OR",
          "zip": "97201"
        },
        "estimated_revenue": 150000
      }
    }
  ],
  "error": null,
  "created_at": "2026-01-15T10:30:00Z"
}