starboardb← dashboardpolygon amoy · testnetevery crud call your data api supports — live, against the real chain
no api key is set — the data api is open. generate one in dashboard → settings before exposing this publicly.
create a collection above to start adding documents
// no requests yet — try an action above
curl "/api/list?collection=users" \ -H "x-api-key: YOUR_API_KEY"
curl "/api/get?collection=users&id=1" \ -H "x-api-key: YOUR_API_KEY"
curl -X POST /api/create \
-H "Content-Type: application/json" -H "x-api-key: YOUR_API_KEY" \
-d '{"collection":"users","data":{"name":"ada"}}'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"}}'curl -X POST /api/delete \
-H "Content-Type: application/json" -H "x-api-key: YOUR_API_KEY" \
-d '{"collection":"users","id":1}'