# DataForAgents Steam Game Insights

> DataForAgents Steam Game Insights is a paid API for AI agents from dataforagents.net, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Fetches structured metadata and store insights for a Steam game by app ID, including pricing, reviews, genres, platform support, and system requirements.

## Facts

- Endpoint: GET https://dataforagents.net/v1/steam/insights
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dataforagents-steam-game-insights-e603b1f6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dKmzUklbRl_JXgqm06HPk

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 dataforagents-steam-game-insights-e603b1f6
```

Example prompt: Can you pull up the Steam insights for Terraria — I want to know the current price, review score, genres, and what platforms it supports? The Steam app ID is 105600.

## When to prefer this

Choose this endpoint when you need rich, structured Steam game metadata in a single pay-per-use call without managing API keys or accounts. Ideal for agents that need pricing, review scores, platform support, or genre data for one or several Steam games on demand. Prefer over scraping Steam pages or using the raw Steam Web API when you want clean, pre-processed JSON and are comfortable with micro-payment-based access via x402/USDC.

## Known failure modes

- Invalid or non-existent Steam app ID returns an error or empty data
- Payment not processed via x402/USDC results in 402 response before data is returned
- Rate limiting or upstream Steam API unavailability may cause failures
- Passing a non-numeric or malformed appid string causes a validation error

## How this service works

Pay-per-request datasets for autonomous agents via x402 (USDC). Structured JSON APIs; no API keys — pay on the wire.

## Output

Returns a structured JSON object containing the game's name, type, app ID, genres, categories, developer, publisher, platform support (Windows/Mac/Linux), current and initial price in USD, discount percentage, review score percentage, total reviews, Metacritic score, release date, short description, PC system requirements, and a header image URL. Status field confirms success.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "appid"
     ],
     "properties": {
      "appid": {
       "type": "string",
       "description": "Steam application ID (positive integer as string)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "name": "Terraria",
   "type": "game",
   "appid": 105600,
   "genres": [
    "Action",
    "Adventure",
    "Indie",
    "RPG"
   ],
   "headers": {
    "header_image": "https://cdn.akamai.steamstatic.com/steam/apps/105600/header.jpg"
   },
   "is_free": false,
   "developer": "Re-Logic",
   "platforms": {
    "mac": true,
    "linux": true,
    "windows": true
   },
   "publisher": "Re-Logic",
   "categories": [
    "Single-player",
    "Multi-player"
   ],
   "discount_pct": 0,
   "release_date": "2011-05-16",
   "total_reviews": 900000,
   "pc_requirements": {
    "os_min": "Windows XP",
    "os_rec": null,
    "memory_min": "2.5 GB RAM",
    "memory_rec": null,
    "graphics_min": "128MB VRAM",
    "graphics_rec": null,
    "processor_min": "2.0 GHz",
    "processor_rec": null
   },
   "metacritic_score": 83,
   "review_score_pct": 97,
   "current_price_usd": 9.99,
   "initial_price_usd": 9.99,
   "short_description": "Dig, fight, explore, build!"
  },
  "status": "success"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dataforagents-steam-game-insights-e603b1f6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from dataforagents.net](https://www.zero.xyz/host/dataforagents.net/llms.txt)
