> ## 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.

# Get row

> Retrieve a single row from a table.

## Path parameters

<ParamField path="table_id" type="string" required>
  The unique identifier of the table.
</ParamField>

<ParamField path="row_id" type="string" required>
  The unique identifier of the row.
</ParamField>

## Response

<ResponseField name="id" type="string">Unique row identifier.</ResponseField>
<ResponseField name="row_index" type="integer">Position of the row in the table.</ResponseField>
<ResponseField name="data" type="object">Extracted data keyed by column key.</ResponseField>
<ResponseField name="validation_status" type="string | null">Validation status.</ResponseField>
<ResponseField name="validation_errors" type="object | null">Validation error details.</ResponseField>
<ResponseField name="enhancement_status" type="object | null">Per-column enhancement status.</ResponseField>
<ResponseField name="is_edited" type="boolean">Whether the row has been manually edited.</ResponseField>
<ResponseField name="created_at" type="string">ISO 8601 timestamp.</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>
