curl -X POST --header 'Authorization: Bearer iasdga' -H 'Content-Type: application/json' -d '{"nativeQueries": ["SELECT * FROM users"]}' https://data.ronin.co
you can use a queries
property instead of nativeQueries
, which can hold an array of RONIN query objects
"queries": [{
"get": {"users": null}
}]
curl -X GET -H 'Authorization: Bearer 1234' 'https://ronin.supply/@ronin/solbond'
// .get sorted by date
await get.accounts.with.upgradedAt.greaterThan(new Date());