# SteamSpy App Stats via Suverse Proxy

> SteamSpy App Stats via Suverse Proxy is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Returns SteamSpy estimates for a Steam game including owner counts, playtime, concurrent users, price, review counts, developer, publisher, genres, and tags.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-steamspy-app-stats
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/steamspy-app-stats-via-suverse-proxy-5f78a420
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HWPlRoQRg9xcMVnlODpA_

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability steamspy-app-stats-via-suverse-proxy-5f78a420 -d '<json body>'
```

Example prompt: Can you pull the SteamSpy stats for Steam app ID 570 — I want to see the estimated owner count, average playtime, concurrent users, price, and genre tags?

## When to prefer this

Use this endpoint when you need SteamSpy-sourced game statistics (owner estimates, playtime, concurrent users, tags) for a specific Steam app without needing a SteamSpy API key. Prefer over direct SteamSpy API calls when operating in an x402 payment-gated agent workflow. Best for market research, game benchmarking, and data enrichment pipelines that need structured game metadata.

## Known failure modes

- Invalid or unknown Steam app ID returns empty or error response
- SteamSpy data not yet available for very new releases
- Rate limiting or upstream SteamSpy API unavailability
- Malformed POST body causes 400-level error
- Payment of 0.1 USDC not fulfilled causes 402 Payment Required

## How this service works

SteamSpy estimates for a Steam game: owners range, average and median playtime, concurrent users, price, review counts, developer, publisher, genre and tags. Keyless.

## Output

Returns a JSON object with SteamSpy-estimated data for the requested Steam game, including: owner count range (e.g. '2,000,000 .. 5,000,000'), average and median playtime in minutes, peak concurrent users, current price in cents, positive and negative review counts, developer name, publisher name, genre list, and user-assigned tags.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/steamspy-app-stats-via-suverse-proxy-5f78a420/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
