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

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.
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

Query: status optional ready, not_found, or all, default all; limit optional 1-500 default 50; offset optional default 0.

Request examples

Basic request:
curl -X GET "$BASE_URL/projects/{project}/exports" \
  -H 'Authorization: Bearer pat_PROJECT_TOKEN'
Full request:
curl -X GET "$BASE_URL/projects/{project}/exports?status=ready&limit=100&offset=0" \
  -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": {
    "exports": [
      {
        "id": "exp_20260601_182345_a1b2c3d4e5",
        "kind": "table_export",
        "scope": "project",
        "project": "example_project",
        "table": "contacts",
        "format": "csv",
        "download_name": "contacts.csv",
        "download_url": "/projects/example_project/export/download/exp_20260601_182345_a1b2c3d4e5",
        "storage_backend": "local",
        "content_type": "text/csv; charset=utf-8",
        "row_count": 25,
        "table_count": null,
        "size_bytes": 2048,
        "status": "ready",
        "status_reason": null,
        "missing_at": null,
        "created_at": "2026-06-02T01:23:45Z",
        "expires_at": null
      }
    ],
    "total": 1,
    "limit": 50,
    "offset": 0
  },
  "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"
  }
}
Error or alternate response:
{
  "ok": false,
  "data": null,
  "error": {
    "code": "invalid_export_status",
    "message": "status must be ready, not_found, or all."
  },
  "request_id": "req_20260602T012345_123456Z_abc123def456",
  "meta": {
    "generated_at": "2026-06-02T01:23:45Z"
  }
}