## Download structured sheet export **get** `/v1/structured-sheets/{structured_sheet_id}/download` Download the structured data in the specified format. Only available when conversion status is 'completed'. Available formats: - `sqlite`: SQLite database containing all extracted tables - `cell_labels`: CSV file with cell-level semantic labels ### Path Parameters - `structured_sheet_id: string` The unique identifier of the structured sheet conversion. ### Query Parameters - `format: optional "sqlite" or "cell_labels"` The export format to download. - `"sqlite"` - `"cell_labels"` ### Example ```http curl https://api.deeptable.com/v1/structured-sheets/$STRUCTURED_SHEET_ID/download \ -H "Authorization: Bearer $DEEPTABLE_API_KEY" ```