Skip to main content
GET
/
v2
/
data
/
export
/
download
Export and Download Table Data (v2)
curl --request GET \
  --url https://api.example.com/v2/data/export/download \
  --header 'Authorization: Bearer <token>'
{
  "code": 400,
  "data": null,
  "exception": {
    "error_code": 400001,
    "error_message": "Bad Request: "
  },
  "success": false
}

Authorizations

Authorization
string
header
required

Bearer token authentication. Include the token in the Authorization header as 'Bearer '

Query Parameters

format
string
required

File format. Currently, only "Parquet" is supported. (Available values : Jsonl, Parquet)

row_group_size
integer

Row group size in bytes. Default is 40000000.

Required range: x >= 0

Response

Data successfully exported.