cURL
curl --request GET \ --url https://api.example.com/v1/table/{table_uuid}/rows \ --header 'x-apikey: <x-apikey>'
{ "has_next_page": "true", "total_count": 40, "result": [ { "id": "fec5c2e3-1f18-491b-a875-5c274f052357", "parent": "null", "data": { "updated_at": "2024-08-27 13:44", "status": "completed", "column1": "data1", "column2": "data2" }, "status": "completed" } ] }
Get a tables rows by its ID.
API Key for authentication
The UUID of the table to retrieve
Specifies the number of items to return per page.
Defines the page number to retrieve.
Table retrieved successfully