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

# Get Row

> Get a single row by ID

## Path Parameters

<ParamField path="id" type="string" required>
  Table ID
</ParamField>

<ParamField path="rowId" type="string" required>
  Row ID
</ParamField>

## Response

Returns a row object with user-defined fields plus metadata.

<ResponseField name="id" type="string">
  Row ID
</ResponseField>

<ResponseField name="_meta" type="object">
  Metadata (`created_at`, `created_by`, `updated_at`, `updated_by`)
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.crewship.dev/v1/tables/tbl_abc123xyz789/rows/row_abc123xyz789 \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json Success theme={null}
  {
    "id": "row_abc123xyz789",
    "company": "Acme",
    "score": 92,
    "status": "qualified",
    "_meta": {
      "created_at": "2024-01-15T10:35:00Z",
      "created_by": "api:Production Key",
      "updated_at": "2024-01-20T08:12:00Z",
      "updated_by": "api:Production Key"
    }
  }
  ```

  ```json Error theme={null}
  {
    "error": {
      "message": "Row not found"
    }
  }
  ```
</ResponseExample>
