## Download table data **get** `/v1/structured-sheets/{structured_sheet_id}/tables/{table_id}/download` Download the table data in the specified format. Available formats: - `parquet`: Apache Parquet columnar format (recommended for data analysis) - `csv`: Comma-separated values (compatible with any spreadsheet application) ### Path Parameters - `structured_sheet_id: string` The unique identifier of the structured sheet conversion. - `table_id: string` The unique identifier of the table. ### Query Parameters - `format: "parquet" or "csv"` The format to download the table data in. - `"parquet"` - `"csv"` ### Example ```http curl https://api.deeptable.com/v1/structured-sheets/$STRUCTURED_SHEET_ID/tables/$TABLE_ID/download \ -H "Authorization: Bearer $DEEPTABLE_API_KEY" ```