Skip to content

API Cookbook

Andrew Bates edited this page Aug 31, 2024 · 1 revision

API Cookbook

List player counts by server operator id:

curl -s --location 'https://g.echovrce.com/status/matches' | jq '.labels | map({oper: .broadcaster.oper, count: .player_count}) | group_by(.oper) | map({oper: .[0].oper, players: (map(.count) | add)  })'
[
  {
    "oper": "193dca1a-f844-451d-81ac-5c6b8f206226",
    "players": 10
  },
  {
    "oper": "6423fd42-1e12-4a46-a823-b11384ed4591",
    "players": 21
  },
  {
    "oper": "8b2fbe3e-16bc-4a10-8473-6edcff68f168",
    "players": 8
  },
  {
    "oper": "970732b2-4719-444d-b348-c67335c13cce",
    "players": 14
  },
  {
    "oper": "9e87510d-5072-4c57-aef3-88b572c4e1a3",
    "players": 39
  }
]

Clone this wiki locally