Skip to main content
GET
https://api-zangtable.com
/
projects
/
{project}
/
records
/
{table}
GET /projects/{project}/records/{table}
curl --request GET \
  --url https://api-zangtable.com/projects/{project}/records/{table} \
  --header 'Authorization: <authorization>'
{
  "ok": true,
  "data": {},
  "error": {},
  "request_id": "<string>"
}
Lists rows in a table.

Endpoint details

Authorization
string
required
Bearer pat_... (Project API Token). Keep this token on your backend/server.
project
string
required
Project slug. This acts as the Project ID in API paths.
table
string
required
Table name inside the project.
ok
boolean
required
true for a successful response and false for an error response.
data
object | null
Endpoint-specific response data when ok is true; null on errors.
error
object | null
Error code and message when ok is false; null on success.
request_id
string
required
Request identifier you can use when troubleshooting a specific API call.

Authentication

Project API Token.

Parameters

Path: table required. Query: filters optional JSON; sort optional column; order optional asc/desc; limit optional 1-500 default 100; offset optional default 0; include_count or count optional boolean.

Request examples

Basic request:
curl -X GET "$BASE_URL/projects/{project}/records/{table}" \
  -H 'Authorization: Bearer pat_PROJECT_TOKEN'
Full request:
curl -X GET "$BASE_URL/projects/{project}/records/{table}?filters=%5B%7B%22column%22%3A%22status%22%2C%22op%22%3A%22%3D%22%2C%22value%22%3A%22active%22%7D%5D&sort=id&order=desc&limit=50&offset=0&include_count=true" \
  -H 'Authorization: Bearer pat_PROJECT_TOKEN' \
  -H 'X-Operation-Key: edit-profile-email' \
  -H 'X-Operation-Run-Id: oprun_client_20260602_001'

Response examples

Success:
{
  "ok": true,
  "data": {
    "table": "contacts",
    "rows": [
      {
        "id": 1,
        "email": "ada@example.com",
        "status": "active"
      }
    ],
    "limit": 100,
    "offset": 0,
    "returned": 1,
    "has_more": false
  },
  "error": null,
  "request_id": "req_20260602T012345_123456Z_abc123def456",
  "operation_key": "edit-profile-email",
  "operation_run_id": "oprun_20260602T012300_000000Z_a1b2c3d4e5f6",
  "operation_grouping_status": "accepted_provided_run",
  "meta": {
    "generated_at": "2026-06-02T01:23:45Z"
  }
}
With include_count:
{
  "ok": true,
  "data": {
    "table": "contacts",
    "rows": [
      {
        "id": 1,
        "email": "ada@example.com",
        "status": "active"
      }
    ],
    "limit": 50,
    "offset": 0,
    "returned": 1,
    "has_more": false,
    "total": 1
  },
  "error": null,
  "request_id": "req_20260602T012345_123456Z_abc123def456",
  "meta": {
    "generated_at": "2026-06-02T01:23:45Z"
  }
}