Wakato Docs
API Reference

Tables

GET
/tables

Authorization

bearerAuth
AuthorizationBearer <token>

A Space API key, e.g. wks_live_….

In: header

Response Body

application/json

curl -X GET "https://example.com/tables"
{}
GET
/tables/{tableId}/rows

Authorization

bearerAuth
AuthorizationBearer <token>

A Space API key, e.g. wks_live_….

In: header

Path Parameters

tableId*string

Query Parameters

limit?integer
offset?integer

Response Body

application/json

curl -X GET "https://example.com/tables/string/rows"
{}
POST
/tables/{tableId}/rows

Authorization

bearerAuth
AuthorizationBearer <token>

A Space API key, e.g. wks_live_….

In: header

Path Parameters

tableId*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/tables/string/rows" \  -H "Content-Type: application/json" \  -d '{}'
{}
PATCH
/tables/{tableId}/rows/{rowId}

Authorization

bearerAuth
AuthorizationBearer <token>

A Space API key, e.g. wks_live_….

In: header

Path Parameters

tableId*string
rowId*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X PATCH "https://example.com/tables/string/rows/string" \  -H "Content-Type: application/json" \  -d '{}'
{}