Rows & Export
Paginate through reference data rows or download the entire table as a CSV file. Use rows for programmatic access and CSV export for spreadsheet workflows.
Access the row-level content of a reference data table. The rows endpoint returns paginated results with each row's data fields, while the CSV export endpoint downloads the entire table as a text/csv file suitable for spreadsheet applications.
Use the rows endpoint for programmatic access — for example, to verify that uploaded data matches expectations before running a matching config, or to build a preview in your integration. Pagination defaults to 100 rows per page with a maximum of 500. Each row includes an id field alongside the original data columns.
The CSV export endpoint returns the full table contents as a downloadable file with a Content-Disposition header set to attachment. Column headers match the column names from the table schema. This is useful for auditing reference data, sharing with non-technical stakeholders, or re-importing into external systems.
Both endpoints require read scope. For large tables, prefer the paginated rows endpoint over CSV export to avoid timeouts and memory pressure. The CSV export streams the response, but very large tables (50K+ rows) may be slow over high-latency connections.
Content-Type: text/csv with a Content-Disposition: attachment header. Most HTTP clients will save this as a file automatically. Use the Accept header if your client needs content negotiation./v1/reference-data/:id/rowsResponse (Rows)
Response fields
cURL — Get rows
Response (Rows)
{
"data": [
{
"id": "row_uuid_1",
"vendor_id": "V001",
"vendor_name": "Acme Corp",
"country": "US",
"tax_id": "12-3456789"
},
{
"id": "row_uuid_2",
"vendor_id": "V002",
"vendor_name": "Globex Inc",
"country": "GB",
"tax_id": "GB123456789"
}
],
"pagination": {
"page": 1,
"limit": 50,
"total": 1250
}
}CSV Export
Download the entire reference data table as a CSV file. The response uses Content-Type: text/csv and includes a Content-Disposition header with the suggested filename. Column headers are derived from the table column schema.
/v1/reference-data/:id/csvcURL — Download CSV
CSV output (example)
vendor_id,vendor_name,country,tax_id
V001,Acme Corp,US,12-3456789
V002,Globex Inc,GB,GB123456789
V003,Initech Ltd,DE,DE987654321Errors
Error responses