Skip to content
Last updated

Retrieve detailed information about a specific file in a knowledge store.

GEThttps://api.aitronos.com/v1/organizations/{organization_id}/stores/{store_id}/files/{file_id}

Returns the full details of a file including its processing status, chunk count, and timestamps.

Path Parameters

organization_id string required

The unique identifier of the organization (format: org_*).

store_id string required

The unique identifier of the vector store.

file_id string required

The unique identifier of the file (format: file_*).


Returns

The file detail object with processing metadata.

cURL
curl -s "https://api.aitronos.com/v1/organizations/org_xyz789/stores/vs_abc123/files/file_abc123def456" \
  -H "Authorization: Bearer $ACCESS_TOKEN" | python3 -m json.tool