Skip to content
Last updated

🔨 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.

Path Parameters

organization_id string required

The unique identifier of the organization.

file_id string required

The unique identifier of the file.


Returns

A File object with complete file metadata.

Bash
curl "https://api.freddy.aitronos.com/v1/organizations/org_abc123/files/file_abc123" \
  -H "X-API-Key: $FREDDY_API_KEY"

Response

{
  "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"
}