Query your API
Every project table gets a REST endpoint:
curl -H "Authorization: Bearer $KEY" \
$BASE_URL/v1/users?select=id,email
| Method | Route | Purpose |
|---|---|---|
| GET | | List rows |
| POST | | Insert a row |
| PATCH | | Update a row |
| DELETE | | Delete a row |
| Param | Type | Description |
|---|---|---|
| string | Comma-separated columns to return. |
| string | Sort, e.g. . |
| number | Max rows to return. |