v1

latestOpenAPI 3.0.3MIT OR Apache-2.02026-07-17203670.3 KB
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

table_idstring
totalinteger

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
}