Skip to main content
GET
/
runtime
/
{sourceId}
/
{table}
/
{id}
Get a runtime record by primary key
curl --request GET \
  --url https://your-synthbrew-server.com/api/runtime/{sourceId}/{table}/{id} \
  --header 'x-api-key: <api-key>'
{
  "id": 1,
  "name": "Acme",
  "active": true
}

Authorizations

x-api-key
string
header
required

Source API key created under /api/sources/:sourceId/api-keys

Path Parameters

sourceId
string<uuid>
required

Source UUID. For runtime endpoints this identifies the source backing the table; for public v1 it identifies the source resource inside the project.

table
string
required

Runtime table identifier (usually the schema entity ID used in Synthbrew).

id
string
required

Primary-key value of the row. Values are passed as path strings and cast by the runtime layer based on table schema.

Response

Runtime row

Dynamic runtime row. Shape depends on the source schema/table.