starboardb← dashboardpolygon amoy · testnet

showcase

every crud call your data api supports — live, against the real chain

00 — base url

no api key is set — the data api is open. generate one in dashboard → settings before exposing this publicly.

01 — try it

collectionnone yet —
documentpick or create a collection first
get one:

create a collection above to start adding documents

02 — request log

// no requests yet — try an action above

03 — code

GET · list
curl "/api/list?collection=users" \
  -H "x-api-key: YOUR_API_KEY"
GET · get one
curl "/api/get?collection=users&id=1" \
  -H "x-api-key: YOUR_API_KEY"
POST · create
curl -X POST /api/create \
  -H "Content-Type: application/json" -H "x-api-key: YOUR_API_KEY" \
  -d '{"collection":"users","data":{"name":"ada"}}'
POST · update
curl -X POST /api/update \
  -H "Content-Type: application/json" -H "x-api-key: YOUR_API_KEY" \
  -d '{"collection":"users","id":1,"data":{"name":"ada v2"}}'
POST · delete
curl -X POST /api/delete \
  -H "Content-Type: application/json" -H "x-api-key: YOUR_API_KEY" \
  -d '{"collection":"users","id":1}'