# Suverse Steam Player Count

> Suverse Steam Player Count is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns the live concurrent player count for a Steam game given its app ID, sourced from the Steam Web API — no API key required.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-steam-player-count
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-steam-player-count-1862a0c6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xF1T7-4gZQsrnsLgA5GRv

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 suverse-steam-player-count-1862a0c6 -d '<json body>'
```

Example prompt: How many players are currently online in the Steam game with app ID 252490 — I want to know if it's still got an active playerbase?

## When to prefer this

Choose this endpoint when you need a quick, keyless, real-time read on how many players are actively in a Steam game without setting up your own Steam Web API credentials. Ideal for agents that need to check game health, compare activity across titles, or monitor playerbase trends without infrastructure overhead. At $0.05/call it's cost-effective for spot checks and lightweight polling.

## Known failure modes

- Invalid or non-existent Steam app ID returns an error or zero count
- Steam Web API upstream unavailability causes request failure
- Rate limiting or quota exhaustion on the proxy may return a 429 error
- Payment failure (insufficient USDC balance) returns a 402 error before the data call is made

## How this service works

Live concurrent player count for a Steam game from the Steam Web API. Pass a Steam app id. The cheapest read on how alive a game is right now. Keyless.

## Output

Returns the live concurrent player count for the specified Steam game — a single integer representing how many players are actively in-game at the moment of the request, sourced from Valve's Steam Web API.

## 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/suverse-steam-player-count-1862a0c6/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)
