v1

latestOpenAPI 3.0.0Proprietary2026-08-062711471.0 MB
Table rows

Count rows

Returns the number of rows matching the optional query.

post/public/v1/tables/{name}/rows/count

Path parameters

namestring required
Example:tasks_board

Request body

queryobject

Dynamic-table query. Either a single { path, operator, value } condition, or a nested group { operator: 'and' | 'or', conditions: [...] }.

Example request

{
  "recordType": "example"
}

Response

Count

oktrue required

Example response

{
  "ok": true,
  "data": {
    "count": 1
  }
}