BlueForge Docs

Query your API

Every project table gets a REST endpoint:

curl -H "Authorization: Bearer $KEY" \
  $BASE_URL/v1/users?select=id,email
MethodRoutePurpose
GET
/v1/users
List rows
POST
/v1/users
Insert a row
PATCH
/v1/users/:id
Update a row
DELETE
/v1/users/:id
Delete a row
ParamTypeDescription
select
stringComma-separated columns to return.
order
stringSort, e.g.
created_at.desc
.
limit
numberMax rows to return.