> ## Documentation Index
> Fetch the complete documentation index at: https://docs.okrapdf.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Tables

> List all tables extracted from a document.

## Overview

Returns all table nodes extracted from a document. Does not require authentication for public documents.

## Request

<ParamField path="id" type="string" required>
  Document ID (e.g. `doc-abc123`) or 6-char short hash.
</ParamField>

<ParamField query="limit" type="integer">
  Max number of tables to return.
</ParamField>

<ParamField query="offset" type="integer">
  Number of tables to skip (for pagination).
</ParamField>

<RequestExample>
  ```bash theme={null}
  curl https://api.okrapdf.com/v1/documents/doc-abc123/entities/tables \
    -H "Authorization: Bearer okra_YOUR_KEY"
  ```
</RequestExample>

### Response (200)

```json theme={null}
{
  "nodes": [
    {
      "type": "table",
      "value": "| Header 1 | Header 2 |\n|---|---|\n| A | B |"
    }
  ]
}
```
