cURL
curl --request GET \ --url https://{subdomain}.mindhunters.ai/api/v1/data/{uuid}/records \ --header 'Authorization: Bearer <token>'
{ "success": true, "message": "Records retrieved successfully", "data": { "current_page": 123, "data": [ { "record_id": 123, "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z", "values": [ { "column_id": 123, "column_name": "<string>", "data_type": "<string>", "value": "<string>" } ] } ], "per_page": 123, "total": 123 } }
Returns records with their field values using pagination.
Use a Bearer token to access these API endpoints. Example: "Bearer {your-token}"
UUID of the data
Page number
Items per page (max 1000)
Records retrieved successfully
true
"Records retrieved successfully"
Show child attributes