# Steam Top Sellers API

> Steam Top Sellers API is a paid API for AI agents from api.borisinc.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns the current top-selling games on Steam, optionally filtered by country for regional pricing

## Facts

- Endpoint: GET https://api.borisinc.com/paid/steam/top-sellers
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/steam-top-sellers-api-0f2738e7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_E3juGWIg4G2M72XoYiJrc

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 steam-top-sellers-api-0f2738e7
```

Example prompt: What are the top-selling games on Steam right now in the US?

## When to prefer this

Use this endpoint when you need real-time Steam sales chart data, especially when regional pricing context matters. Prefer this over scraping Steam directly or using outdated static game lists.

## Known failure modes

- Invalid ISO country code returns error or defaults to global results
- Steam API downtime may cause upstream failures
- Rate limiting may apply at high call volumes
- Missing or malformed query params may return unexpected results

## How this service works

Live Steam best-sellers, deals, per-app detail and IGDB metadata, Twitch hype scores, and agent utilities for verification and extraction. From $0.001 a call, free samples on every endpoint, auth-then-capture. MCP and HTTP.

## Output

A ranked list of Steam's current top-selling games, potentially including game names, Steam IDs, sales rank, and regional pricing data based on the optional country parameter.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "country": {
       "type": "string",
       "description": "ISO country code for regional pricing"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 50,
  "country": "US",
  "top_sellers": [
   {
    "name": "ARC Raiders",
    "appid": 2429640,
    "price": "$39.99"
   }
  ],
  "cached_ttl_s": 600
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/steam-top-sellers-api-0f2738e7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.borisinc.com](https://www.zero.xyz/host/api.borisinc.com/llms.txt)
