AFAIK, the stats API (https://stats.allstarlink.org/api/stats/{node}) currently only allows to query for a single node at a time. In an effort to be respectful of the rate limits (30 requests per minute... which is very generous ), I would like to be able to query a list of nodes at once.
Example request:
https:// stats.allstarlink.org/api/stats/499601,65017,508064
Example response:
An array of the stats object, one item per requested node.
[
{
"stats": {
"id": 2854,
"node": 499601,
...
},
{
"stats": {
"id": 2854,
"node": 65017,
...
},
{
"stats": {
"id": 2854,
"node": 508064,
...
},
]
Does such a thing exist? If not, could I help to add that feature?