Get File Details

Get details and processing status for a specific file.

GET /api/v1/files/{file_id}

Returns details and processing status for a specific file.

Headers

Name
Type
Description

Authorization*

string

Bearer YOUR_API_TOKEN

Path Parameters

Name
Type
Description

file_id*

string

The UUID of the file

Response (200: OK)

{
  "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "filename": "report.pdf",
  "type": "pdf",
  "status": "success",
  "file_size": 1048576,
  "created_at": "2025-03-15",
  "summary": "This report covers Q4 financial results...",
  "errors": null
}

Error (404: Not Found)

Example

Last updated