> ## 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 řádek

> Načtení jednoho řádku z tabulky.

## Parametry cesty

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

<ParamField path="row_id" type="string" required>
  Jedinečný identifikátor řádku.
</ParamField>

## Odpověď

<ResponseField name="id" type="string">Jedinečný identifikátor řádku.</ResponseField>
<ResponseField name="row_index" type="integer">Pozice řádku v tabulce.</ResponseField>
<ResponseField name="data" type="object">Extrahovaná data klíčovaná podle klíče sloupce.</ResponseField>
<ResponseField name="validation_status" type="string | null">Stav validace.</ResponseField>
<ResponseField name="validation_errors" type="object | null">Podrobnosti o chybách validace.</ResponseField>
<ResponseField name="enhancement_status" type="object | null">Stav obohacení pro jednotlivé sloupce.</ResponseField>
<ResponseField name="is_edited" type="boolean">Zda byl řádek ručně upraven.</ResponseField>
<ResponseField name="created_at" type="string">Časové razítko ISO 8601.</ResponseField>

<RequestExample>
  ```typescript TypeScript theme={null}
  const row = await client.tables.getRow("tbl_abc123", "row_xyz789");

  console.log(row.data.name);
  console.log(row.data.price);
  console.log(row.is_edited);
  ```

  ```python Python theme={null}
  row = client.tables.get_row("tbl_abc123", "row_xyz789")

  print(row["data"]["name"])
  print(row["data"]["price"])
  print(row["is_edited"])
  ```

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

<ResponseExample>
  ```json Response theme={null}
  {
    "id": "row_abc123",
    "row_index": 0,
    "data": {
      "product_name": "iPhone 15 Pro",
      "price": 999,
      "description": "Latest Apple smartphone"
    },
    "validation_status": null,
    "validation_errors": null,
    "enhancement_status": null,
    "is_edited": false,
    "created_at": "2025-03-10T14:30:00.000Z"
  }
  ```
</ResponseExample>
