Skip to main content
GET
/
v1
/
exports
/
{id}
/
download
Download export
curl --request GET \
  --url https://api.ticksupply.com/v1/exports/{id}/download \
  --header 'X-Api-Key: <api-key>'
{
  "artifacts": [
    {
      "id": "art_0194a1b2c3d4e5f6a7b8c9d0e1f2a3b4",
      "url": "https://tickstore-exports.s3.amazonaws.com/exports/...",
      "bytes": 524288000,
      "filename": "binance_BTCUSDT_trades_part_2024010100.csv.gz"
    },
    {
      "id": "art_0194b2c3d4e5f6a7b8c9d0e1f2a3b4c5",
      "url": "https://tickstore-exports.s3.amazonaws.com/exports/...",
      "bytes": 524288000,
      "filename": "binance_BTCUSDT_trades_part_2024010101.csv.gz"
    },
    {
      "id": "art_0194c3d4e5f6a7b8c9d0e1f2a3b4c5d6",
      "url": "https://tickstore-exports.s3.amazonaws.com/exports/...",
      "bytes": 524288000,
      "filename": "binance_BTCUSDT_trades_part_2024010102.csv.gz"
    }
  ],
  "count": 3,
  "total_bytes": 1572864000
}

Authorizations

X-Api-Key
string
header
required

Your API key. Get one from the dashboard at https://app.ticksupply.com/api-keys

Path Parameters

id
string
required

Export job ID (prefixed format, e.g., exp_xxx)

Response

Download URLs for all export artifacts

Download response containing presigned URLs for all export artifacts. Large exports may be split into multiple files (hourly or daily partitions).

artifacts
object[]
required

List of downloadable artifacts with presigned URLs

count
integer
required

Number of artifacts

Example:

3

total_bytes
integer<int64>
required

Total size across all artifacts in bytes

Example:

1572864000