Authentication
Every v1 request requires a workspace API key sent as a Bearer token:GET /me to confirm which workspace your key belongs to.
Endpoints
| Method | Path | Description |
|---|---|---|
GET | /me | Return the workspace tied to your API key |
GET | /workspaces/{workspace}/projects | List projects in a workspace |
GET | /workspaces/{workspace}/projects/{project} | Get a project and its fields |
GET | /workspaces/{workspace}/projects/{project}/data | Fetch paginated project rows |
{workspace} with your workspace slug and {project} with a project ID.
Errors
The API returns JSON error bodies:| Status | Meaning |
|---|---|
401 | Missing or invalid API key |
403 | API key does not belong to the requested workspace |
404 | Resource not found in the requested workspace |
Next steps
Authentication
Create and manage workspace API keys.
List projects
Fetch all projects in a workspace.