Skip to main content
GET
Get Table Row

Overview

This endpoint returns a single row by ID.

Example request

Key parameters

  • table_id (required): target table identifier.
  • row_id (required): target row identifier.

Success signal

A successful response returns one row object with id, data, and row metadata.

Common errors

401 Unauthorized

Check that your header is Authorization: Bearer ${EXTRUCT_API_TOKEN}.

404 Not Found

The table ID or row ID is invalid or unavailable in your workspace.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

table_id
string
required
row_id
string
required

Response

Successful Response

id
string
required
created_at
string<date-time>
required

Row creation time.

status
enum<string>
required
Available options:
running,
idle
columns
ColumnOutputSchema · object[]
required
parent_row_id
string | null

ID of the parent row, if any.

company_profile_id
string | null

ID of the linked company profile.

data
Data · object
metadata
object | null

Additional metadata

parent_data
object | null

Data from the parent row, if requested and available.