Skip to main content
GET
/
databases
/
{databaseId}
/
tables
/
{tableId}
/
records
Get Records
curl --request GET \
  --url https://tables-api.softr.io/api/v1/databases/{databaseId}/tables/{tableId}/records \
  --header 'Softr-Api-Key: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "tableId": "<string>",
      "fields": {},
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "metadata": {
    "offset": 123,
    "limit": 123,
    "total": 123
  }
}

Authorizations

Softr-Api-Key
string
header
required

Path Parameters

databaseId
string
required
tableId
string
required

Query Parameters

offset
integer
default:0
limit
integer
default:10

Response

A paginated list of records.

data
object[]
metadata
object