Requests go to https://api.dietbloxycola.com (api.bloxycola.com answers too). Every response carries open CORS, so a browser page can call it directly. The CDN holds each answer for the window listed on the endpoint; polling harder than that just reads the cache.

GEThttps://api.dietbloxycola.com/v1

The index. Lists every endpoint on this page, as JSON.

curl https://api.dietbloxycola.com/v1
Sample answer
{
  "name": "Diet Bloxy Cola public API",
  "endpoints": [
    { "method": "GET", "path": "/v1", "description": "This index." },
    {
      "method": "GET",
      "path": "/v1/live",
      "description": "Players online, visits and favorites across the studio, right now."
    },
    {
      "method": "GET",
      "path": "/v1/games",
      "description": "Every public game with its live counts and votes."
    },
    {
      "method": "GET",
      "path": "/v1/games/{universeId}",
      "description": "One game by universe id."
    }
  ],
  "docs": "https://api.dietbloxycola.com"
}
GEThttps://api.dietbloxycola.com/v1/live

The numbers that move: players online, total visits and favorites across the studio, plus the same per game. Cached about 5 seconds. Answers 503 when Roblox is unreachable.

curl https://api.dietbloxycola.com/v1/live
Sample answer
{
  "playing": 12,
  "visits": 51234,
  "favorites": 861,
  "games": [
    {
      "universeId": 10059478915,
      "playing": 12,
      "visits": 51234,
      "favorites": 861,
      "upVotes": 190,
      "downVotes": 14
    }
  ]
}
GEThttps://api.dietbloxycola.com/v1/games

Every public game under the studio, most played first: name, genre, live counts, votes and the play link. The list refreshes about every 5 minutes.

curl https://api.dietbloxycola.com/v1/games
Sample answer
{
  "games": [
    {
      "universeId": 10059478915,
      "placeId": 73837934057107,
      "name": "Shoplifters",
      "genre": "Social deduction",
      "playing": 12,
      "visits": 51234,
      "favorites": 861,
      "upVotes": 190,
      "downVotes": 14,
      "playUrl": "https://www.roblox.com/games/73837934057107"
    }
  ]
}
GEThttps://api.dietbloxycola.com/v1/games/{universeId}

One game by its Roblox universe id, same fields as the list. Answers 404 when the id is not one of ours.

curl https://api.dietbloxycola.com/v1/games/10059478915
Sample answer
{
  "universeId": 10059478915,
  "placeId": 73837934057107,
  "name": "Shoplifters",
  "genre": "Social deduction",
  "playing": 12,
  "visits": 51234,
  "favorites": 861,
  "upVotes": 190,
  "downVotes": 14,
  "playUrl": "https://www.roblox.com/games/73837934057107"
}