Game Over Gauge

Embed the Gauge & Use the API

Everything you need to integrate Game Over Gauge into your website, dashboard, or trading system.

Sign In to Get Your API Key

Widget Integration

Place the gauge anywhere on your site — auto-updates daily.

<!-- Game Over Gauge widget -->
<div data-gog-widget
     data-theme="dark"
     data-layout="compact"
     data-band-labels="true"></div>

<script async
        src="https://game-over-gauge.netlify.app/widget.js"
        data-gog-api-key="YOUR_API_KEY"></script>

Widget Options

data-theme="dark|light"
data-layout="compact|full"
data-band-labels="true|false"
data-show-history="true|false"

All widgets auto-fetch /api/gauge/latest using your API key.


REST JSON API

Get latest gauge

GET /api/gauge/latest
Headers:
  X-GOG-API-Key: YOUR_API_KEY

Get 30-day history

GET /api/gauge/history?days=30
Headers:
  X-GOG-API-Key: YOUR_API_KEY

Example Response

{
  "date": "2025-11-24",
  "total_score": 63.2,
  "band": "Risky",
  "financial_score": 38.1,
  "financial_band": "Cautious",
  "geo_score": 81.4,
  "geo_band": "Severe"
}

Authentication

All API endpoints require an API key.
Free plan: 1,000 requests/day, 10/min.

curl https://game-over-gauge.netlify.app/api/gauge/latest \
  -H "X-GOG-API-Key: YOUR_API_KEY"

Code Examples

JavaScript

const res = await fetch("https://game-over-gauge.netlify.app/api/gauge/latest", {
  headers: { "X-GOG-API-Key": "YOUR_API_KEY" }
});
console.log(await res.json());

Python

import requests
resp = requests.get(
  "https://game-over-gauge.netlify.app/api/gauge/latest",
  headers={"X-GOG-API-Key": "YOUR_API_KEY"}
)
print(resp.json())

Node.js

import fetch from "node-fetch";
const r = await fetch("https://game-over-gauge.netlify.app/api/gauge/latest", {
  headers: {
    "X-GOG-API-Key": process.env.GOG_KEY
  }
});
console.log(await r.json());