List datafiles
list_datafilesList the datafiles belonging to the authenticated tenant. A datafile is a published JSON object served from a CDN — the data layer a page can fetch and hydrate from.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page_size | No | maximum number of datafiles to return in this page | |
| page_token | No | token from a previous response's next_page_token to fetch the next page | |
| slug_prefix | No | only return datafiles under this FOLDER path (matched on whole '/'-delimited segments, NOT as a raw string prefix), e.g. 'blog/posts' (trailing slash optional) returns everything under blog/posts/. A partial segment matches nothing — 'blog/2026-08' will NOT match 'blog/2026-08-01-hello'; use the full segment(s) | |
| include_total | No | if true, also return total_count: the number of datafiles at this folder level (direct children of slug_prefix, or the tenant total when no prefix). Exact-as-full-total for a flat collection like a blog's posts under one prefix; a per-level count when nested. Use it for 'N items' / 'page X of Y' |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| datafiles | Yes | ||
| total_count | No | ||
| next_page_token | Yes |