Skip to main content
GET
/
account
/
{project_id}
/
db
/
{table}
/
{item_id}
Get database table item by ID
curl --request GET \
  --url https://api.basic.tech/account/{project_id}/db/{table}/{item_id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {}
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

project_id
string
required

project id

table
string
required

table name

item_id
string
required

item id

Query Parameters

select
string

comma-separated list of fields to return (e.g. ?select=name,email,created_at)

Response

Database item

Database item

data
object