curl --request GET \
--url https://api-dev.narrative.io/datasets/{dataset_id}/find-files \
--header 'Authorization: Bearer <token>'{
"files_per_snapshot": [
{
"files": [
{
"path": "<string>",
"size": 123
}
],
"snapshot_id": 123,
"timestamp": "<string>",
"is_downloadable": true
}
],
"has_next": true,
"next_snapshot": 123
}Lists snapshots and associated files
curl --request GET \
--url https://api-dev.narrative.io/datasets/{dataset_id}/find-files \
--header 'Authorization: Bearer <token>'{
"files_per_snapshot": [
{
"files": [
{
"path": "<string>",
"size": 123
}
],
"snapshot_id": 123,
"timestamp": "<string>",
"is_downloadable": true
}
],
"has_next": true,
"next_snapshot": 123
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Unique identifier for a dataset.
Number of records to return.
Number of records to skip (it's usually page_number * per_page).
ISO-8601 timestamp that will be inclusively used as minimal timestamp of a snapshot.
Snapshot Id that will be inclusively used as the beginning of snapshot search range. That snapshot should exist.
Ok
Show child attributes
Pagination-related flag that shows if there are more snapshots to query.
The id of the snapshot that could be used as search parameter to get next page. Unlike 'offset', guarantees no 'floating pages' issues