---
title: "GET /tables/{tableID}/rows"
method: GET
path: "/tables/{tableID}/rows"
---

# GET /tables/{tableID}/rows

`GET /tables/{tableID}/rows`

Gets rows from a Big Table

## Path parameters

- `tableID` string, required — ID of the table, e.g., `2a1bad8b-cf7c-44437-b8c1-e3782df6`

## Query parameters

- `limit` number — Maximum number of rows to return in a single response. No more than this number of rows will be returned, however fewer rows may be returned, even if there are more rows to fetch. If there are more rows, the response will include a continuation token that can be used to fetch the next set of rows.
- `continuation` string — A continuation token from a previous response. If provided, the next set of rows will be returned. If not provided, the first set of rows will be returned.

## Response `200`

- object
  - `data` object[], required — A collection of row objects conforming to the schema of the table where keys are the column IDs and values are the column values: ```json [ { "fullName": "Alex Bard", "invoiceDate": "2024-07-29T14:04:15.561Z", "totalAmount": 34.50, "amountPaid": 0 }, { "fullName": "Alicia Hines", "invoiceDate": "2023-06-15T10:30:00.000Z", "totalAmount": 50.75, "amountPaid": 20 } ] ```
  - `continuation` string — A continuation token for fetching the next set of rows. If this is not provided, this response contains the last set of rows.

## Other responses

- `400`
- `402`
- `404`

## Changes

- **2025-04-17** `22782d914dc3` — 2 info
  - added the non-success response with the status `402`
  - added the non-success response with the status `404`
- **2025-04-01** `afa4b5b8dc78` — 2 info
  - removed the non-success response with the status `402`
  - removed the non-success response with the status `404`
- **2025-03-24** `85facd138eb5` — 2 info
  - added the non-success response with the status `402`
  - added the non-success response with the status `404`
- **2024-11-19** `f6461bdba3f4` — 1 breaking
  - for the `query` request parameter `limit`, default value `250` was removed
- **2024-11-07** `ecb1d3859fa9` — 1 warning
  - for the `query` request parameter `limit`, the exclusiveMinimum was set to `0.00`

[Full history](https://skmtc.dev/glideapps/apis/untitled-api/changes/tables/:tableID/rows/get.md)

---

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