SteamSonar
🌏 Switch locale to discover games popular in other regions.
SteamSonar
🌏 Switch locale to discover games popular in other regions.
SteamSonar のゲームデータに REST API でアクセスできます。
⚠️ ベータ版
現在テスト運用中のため、レート制限は 10 リクエスト / 分 に設定されています。制限の緩和を希望する場合は、X (Twitter) にて @steamsonar までご連絡ください。
| Method | Path | 説明 | Cache |
|---|---|---|---|
| GET | /api/public/v1/featured | おすすめインディーゲーム (top 20) | 30min |
| GET | /api/public/v1/trending | 急上昇中のインディーゲーム | 5min |
| GET | /api/public/v1/hidden-gems | 掘り出し物 (高評価・低認知度) | 1h |
| GET | /api/public/v1/game/:appid | ゲーム詳細 + AI紹介文 | 1h |
curl -H "x-api-key: YOUR_API_KEY" \ https://www.steamsonar.gg/api/public/v1/featured
const res = await fetch(
"https://www.steamsonar.gg/api/public/v1/featured",
{ headers: { "x-api-key": "YOUR_API_KEY" } }
);
const data = await res.json();
console.log(data.games);429 Too Many Requests