Skip to main content
GET
/
db
/
{table}
/
{id}
Get single row
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"
  }
}

Authorizations

X-API-Key
string
header
required

Path Parameters

table
string
required

Table name

id
string
required

Row ID

Response

Row returned

data
object
required

A row from the database table