Skip to main content
GET
/
v1
/
data
/
row-count
Count Rows
curl --request GET \
  --url https://api.example.com/v1/data/row-count \
  --header 'Authorization: Bearer <token>'
{
  "code": 200,
  "data": {
    "total_row_count": 1073741824
  },
  "exception": null,
  "success": true
}

Authorizations

Authorization
string
header
required

Bearer token authentication. Include the token in the Authorization header as 'Bearer '

Response

Successfully retrieved row count

code
integer<int32>
required

HTTP status code.

Required range: x >= 0
success
boolean
required

Whether the request was successful.

data
object
exception
object