tables
Get documents in a table
Returns all documents assigned to a specific table.
get/v1/tables/{id}/documents
Path parameters
idstring required
Example:tbl_abc123
Table ID
Response
Documents in table
Example response
{
"table_id": "tbl_abc123",
"documents": [
{
"id": "doc_xyz789",
"title": "NDA Agreement",
"total_nodes": 12,
"metadata": {
"author": "Legal Team"
},
"created_at": "2026-01-27T10:00:00Z"
}
],
"total": 15
}