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

# Získat tabulku

> Načtení podrobností o konkrétní extrakční tabulce.

## Parametry cesty

<ParamField path="table_id" type="string" required>
  Jedinečný identifikátor tabulky.
</ParamField>

## Odpověď

<ResponseField name="id" type="string">Jedinečný identifikátor tabulky.</ResponseField>
<ResponseField name="name" type="string">Název tabulky.</ResponseField>
<ResponseField name="schema_id" type="string">Schéma použité pro extrakci.</ResponseField>
<ResponseField name="status" type="string">`queued`, `processing`, `completed` nebo `failed`.</ResponseField>
<ResponseField name="progress" type="integer">Průběh extrakce (0-100).</ResponseField>
<ResponseField name="total_rows" type="integer">Počet extrahovaných řádků.</ResponseField>
<ResponseField name="source_type" type="string">`files` nebo `text`.</ResponseField>
<ResponseField name="additional_context" type="string | null">Kontext extrakce.</ResponseField>
<ResponseField name="enhancement_context" type="string | null">Kontext obohacení.</ResponseField>
<ResponseField name="error_message" type="string | null">Chybová zpráva, pokud zpracování selhalo.</ResponseField>
<ResponseField name="files" type="array">Metadata nahraných souborů.</ResponseField>
<ResponseField name="created_at" type="string">Časové razítko ISO 8601.</ResponseField>
<ResponseField name="updated_at" type="string">Časové razítko ISO 8601.</ResponseField>

<RequestExample>
  ```typescript TypeScript theme={null}
  const table = await client.tables.get("tbl_abc123");

  console.log(table.name);
  console.log(table.status);
  console.log(table.total_rows);
  ```

  ```python Python theme={null}
  table = client.tables.get("tbl_abc123")

  print(table["name"])
  print(table["status"])
  print(table["total_rows"])
  ```

  ```bash cURL theme={null}
  curl -X GET "https://hub.banditshq.com/api/v1/tables/tbl_abc123" \
    -H "Authorization: Bearer lasso_..."
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "id": "tbl_abc123",
    "name": "Q1 Product Catalog",
    "schema_id": "schema_xyz789",
    "status": "completed",
    "progress": 100,
    "total_rows": 42,
    "source_type": "files",
    "additional_context": null,
    "enhancement_context": "Focus on technical specifications",
    "error_message": null,
    "files": [
      { "name": "catalog.pdf", "path": "company_123/file_xyz/catalog.pdf", "size": 1048576 }
    ],
    "created_at": "2025-03-10T14:30:00.000Z",
    "updated_at": "2025-03-10T15:45:00.000Z"
  }
  ```
</ResponseExample>
