curl --request GET \
--url https://api.kapso.ai/platform/v1/db/{table}/{id} \
--header 'X-API-Key: <api-key>'{
"data": {
"id": 1,
"name": "John Doe",
"email": "john@example.com",
"status": "active"
}
}Get a single row by ID.
curl --request GET \
--url https://api.kapso.ai/platform/v1/db/{table}/{id} \
--header 'X-API-Key: <api-key>'{
"data": {
"id": 1,
"name": "John Doe",
"email": "john@example.com",
"status": "active"
}
}Was this page helpful?