curl --request GET \
--url https://api.example.com/api/v1/datasets/{dataset_id}/download \
--header 'Authorization: Bearer <token>'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Download dataset rows in CSV, Excel, or JSON format with download tracking
curl --request GET \
--url https://api.example.com/api/v1/datasets/{dataset_id}/download \
--header 'Authorization: Bearer <token>'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Documentation Index
Fetch the complete documentation index at: https://docs.bavlio.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Download format: csv, excel, or json
^(csv|excel|json)$Optional row cap for preview/picker callers. When set, applies LIMIT at the database layer so we don't serialize/transfer the full dataset just to slice it client-side. Omit to download the full dataset (existing behavior).
1 <= x <= 10000Successful Response