# Suverse Steam App Details

> Suverse Steam App Details 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-15).

Retrieves Steam storefront details for a game by app ID, including name, description, developers, publishers, release date, price, discount, platforms, Metacritic score, genres, and system requirements.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-steam-app-details
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-steam-app-details-8bfaa8d0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fPpGeHILe6ZkqPn-kUKac

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-app-details-8bfaa8d0 -d '<json body>'
```

Example prompt: Can you pull up the Steam store details for Elden Ring — I want to see the price, any current discount, supported platforms, Metacritic score, and system requirements?

## When to prefer this

Use this endpoint when you need comprehensive Steam storefront metadata for a specific game in a single call without needing a Steam API key. Prefer this over scraping the Steam store page directly, or when you need structured data including pricing, discounts, Metacritic scores, and system requirements in one request. Ideal for game catalog enrichment, price monitoring, or surfacing game info to end users.

## Known failure modes

- Invalid or non-existent Steam app ID returns empty or error response
- Steam API rate limiting may cause occasional failures
- Games removed from Steam store may return no data
- Payment not processed (x402 protocol failure) results in 402 response
- Malformed request body returns 400 error

## How this service works

Steam storefront details for a game: name, description, developers, publishers, release date, price and discount, platforms, Metacritic, genres and system requirements. Keyless.

## Output

Returns a structured JSON object containing the game's Steam store data: official name, short and detailed description, developer and publisher names, release date, current price and any active discount, supported platforms (Windows/Mac/Linux), Metacritic score and URL, genre tags, and minimum/recommended system requirements.

## 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-app-details-8bfaa8d0/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)
