cURL
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 }
Count rows in table
Bearer token authentication. Include the token in the Authorization header as 'Bearer '
Successfully retrieved row count
HTTP status code.
x >= 0
Whether the request was successful.
Show child attributes