Skip to main content
GET
/
tables
/
{tableId}
/
rows
/
{rowId}
Fetch one row
curl --request GET \
  --url https://origami.chat/api/v2/tables/{tableId}/rows/{rowId} \
  --header 'Authorization: Bearer <token>'
{
  "object": "<string>",
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "cells": {}
}

Authorizations

Authorization
string
header
required

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

Path Parameters

tableId
string<uuid>
required
rowId
string<uuid>
required

Response

The Row object with typed cells keyed by column slug.

object
string
required
Allowed value: "row"
id
string<uuid>
required
cells
object
required

Typed cells keyed by column slug. Each cell is polymorphic: scalar (input columns), value (+ run metadata where present), or sequence (a reference to the drafted sequence).