Skip to main content
GET
/
v1
/
files
List files
curl --request GET \
  --url https://api.cula.tech/tracking/v1/v1/files \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "fil_01kqzcjrpyf27tgeaqk8twgw91",
      "file_name": "puro_LCA_RCCS_Q4.xlsm",
      "file_size_bytes": 2451230,
      "mime_type": "application/vnd.ms-excel.sheet.macroEnabled.12",
      "site": {
        "id": "<string>",
        "external_id": "<string>"
      },
      "created_at": "2023-11-07T05:31:56Z",
      "external_id": "GC-DOC-Q4-LCA-2025"
    }
  ],
  "pagination": {
    "starting_after": "<string>",
    "limit": 123,
    "has_more": true,
    "next_cursor": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.cula.tech/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key passed as a Bearer token. Keys are scoped to one organisation and a set of permitted sites. Two keys per scope (primary + secondary) are issued to support zero-downtime rotation.

Authorization: Bearer <api-key>

Query Parameters

starting_after
string

Cursor for forward pagination. Pass the next_cursor value from a previous response to fetch the next page. Must be a valid resource ID.

limit
integer
default:10

Maximum number of items to return per page.

Required range: 1 <= x <= 50

Response

Paginated list of files.

data
object[]
required
pagination
object
required

Cursor-based pagination metadata.