List structured sheets
GET/v1/structured-sheets
List all structured sheets conversions for the authenticated user. Results are paginated using cursor-based pagination.
Query Parameters
List structured sheets
curl https://api.deeptable.com/v1/structured-sheets \
-H "Authorization: Bearer $DEEPTABLE_API_KEY"{
"data": [
{
"id": "ss_01kfxgjd94fn9stqm42nejb627",
"created_at": "2024-01-15T10:30:00Z",
"file_id": "file_01kfxgjd94fn9stqm414vjb0s8",
"object": "structured_sheet",
"status": "completed",
"updated_at": "2024-01-15T10:35:00Z",
"last_error": {
"code": "invalid_file_format",
"message": "The uploaded file is not a valid Excel spreadsheet."
},
"sheet_names": [
"Sheet1",
"Financials"
],
"table_count": 6
}
],
"has_more": false,
"object": "list",
"first_id": "ss_01kfxgjd94fn9stqm42nejb627",
"last_id": "ss_01kfxgjd94fn9stqm42nejb627"
}Returns Examples
{
"data": [
{
"id": "ss_01kfxgjd94fn9stqm42nejb627",
"created_at": "2024-01-15T10:30:00Z",
"file_id": "file_01kfxgjd94fn9stqm414vjb0s8",
"object": "structured_sheet",
"status": "completed",
"updated_at": "2024-01-15T10:35:00Z",
"last_error": {
"code": "invalid_file_format",
"message": "The uploaded file is not a valid Excel spreadsheet."
},
"sheet_names": [
"Sheet1",
"Financials"
],
"table_count": 6
}
],
"has_more": false,
"object": "list",
"first_id": "ss_01kfxgjd94fn9stqm42nejb627",
"last_id": "ss_01kfxgjd94fn9stqm42nejb627"
}