Skip to main content
GET
/
files
/
info
curl https://api.u1.archetypeai.app/v0.5/files/info \
  -H "Authorization: Bearer $ATAI_API_KEY"
{
  "num_files": 142,
  "num_bytes": 4831785472,
  "num_ingested": 138,
  "last_updated": 1745803938.214
}

Overview

This endpoint returns aggregated statistics about all files belonging to your organization, including total file count, total bytes, and ingestion progress.

Response

num_files
integer
Total number of files in the organization
num_bytes
integer
Combined size of all files in the organization, in bytes
num_ingested
integer
Number of files that have completed ingestion
last_updated
float
Unix timestamp of the last update to the file statistics
curl https://api.u1.archetypeai.app/v0.5/files/info \
  -H "Authorization: Bearer $ATAI_API_KEY"
{
  "num_files": 142,
  "num_bytes": 4831785472,
  "num_ingested": 138,
  "last_updated": 1745803938.214
}