---
title: "Get Records"
method: GET
path: "/databases/{databaseId}/tables/{tableId}/records"
tags: ["Records"]
---

# Get Records

`GET /databases/{databaseId}/tables/{tableId}/records`

Retrieve a list of all records in the specified table.

## Query parameters

- `offset` integer
- `limit` integer
- `fieldNames` boolean
- `viewId` string

## Response `200`

A paginated list of records.

- object
  - `data` Record[]
    - `id` string
    - `tableId` string
    - `fields` object — A map of Field IDs to their values for this record.
    - `createdAt` string, date-time
    - `updatedAt` string, date-time
  - `metadata` RecordListMetadata
    - `offset` integer
    - `limit` integer
    - `total` integer

## Other responses

- `429` — Rate limit exceeded.

---

[API](https://skmtc.dev/softr/apis/softr-database-api.md) · [All operations](https://skmtc.dev/softr/apis/softr-database-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/softr/softr-database-api/revisions/0ce045eb468a/schema)
