GET
/
account
/
{project_id}
/
db
/
{table}
curl --request GET \
  --url https://api.basic.tech/account/{project_id}/db/{table}
{
  "data": [
    {}
  ],
  "pagination": {
    "limit": 123,
    "offset": 123,
    "count": 123
  }
}

Path Parameters

project_id
string
required

project id

table
string
required

table name

Query Parameters

id
string

item id

order
string

order by field and direction (asc or desc) (e.g. ?order=created_at.desc,name.asc)

limit
integer

maximum number of results to return

offset
integer

number of results to skip

select
string

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

Response

200
application/json

Database item