🔨 In Development — This section is still being developed and may change.
Get details about a specific file by its ID.
GEThttps://api.freddy.aitronos.com/v1/organizations/{organization_id}/files/{file_id}
Retrieve metadata and status information for a previously uploaded file.
organization_id string required
The unique identifier of the organization.
file_id string required
The unique identifier of the file.
A File object with complete file metadata.
Bash
- Bash
- Python
- Python
curl "https://api.freddy.aitronos.com/v1/organizations/org_abc123/files/file_abc123" \
-H "X-API-Key: $FREDDY_API_KEY"{
"id": "file_abc123",
"name": "product_docs.pdf",
"organizationId": "org_abc123",
"size": 2457600,
"mimeType": "application/pdf",
"purpose": "vector_store",
"status": "uploaded",
"createdAt": "2025-01-20T15:30:00Z",
"createdBy": "uid_user123"
}