# Steam Deals Finder

> Steam Deals Finder 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).

Fetches current Steam game deals filtered by discount percentage and review/metacritic score

## Facts

- Endpoint: GET https://api.borisinc.com/paid/steam/deals
- 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-deals-finder-472921f4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-BNRJncZqXTCMe6ecSULa

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-deals-finder-472921f4
```

Example prompt: Can you find me the top 20 Steam game deals right now that have at least a 70% discount and a minimum review score of 80?

## When to prefer this

Use this endpoint when an agent needs to surface current Steam game sale deals programmatically, especially when filtering by quality (review score) and value (discount %). Prefer over scraping Steam directly or using unofficial tools; ideal for deal-hunting workflows targeting value-conscious gamers.

## Known failure modes

- Steam API unavailable — no deals returned
- count exceeds maximum of 60 — request clamped or rejected
- invalid integer values for min_review or min_discount — validation error
- no games match the specified filters — empty result set
- payment not processed — 402 response requiring x402 payment

## 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 list of Steam game deals matching the specified filters, including game titles, current discount percentages, prices, and review/metacritic scores for up to 60 specials scanned.

## 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": {
      "count": {
       "type": "integer",
       "description": "Specials to scan (max 60)"
      },
      "min_review": {
       "type": "integer",
       "description": "Minimum review/metacritic score 0-100"
      },
      "min_discount": {
       "type": "integer",
       "description": "Minimum discount %"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 8,
  "deals": [
   {
    "name": "Example",
    "appid": 12345,
    "price": 9.99,
    "value_score": 71.2,
    "discount_pct": 75,
    "original_price": 39.99,
    "review_score_pct": 88
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/steam-deals-finder-472921f4/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)
