# FreeToGame Single Game Detail Lookup

> FreeToGame Single Game Detail Lookup is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Fetches full details for a single free-to-play game by ID, including description, status, system requirements, and screenshots.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-game-free-detail
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/freetogame-single-game-detail-lookup-5ff6b653
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_V4JqFNzcSs4NIAa5qSDSy

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 freetogame-single-game-detail-lookup-5ff6b653 -d '<json body>'
```

Example prompt: Can you pull up the full details for free-to-play game ID 452 — I want the description, system requirements, current status, and any screenshots available?

## When to prefer this

Use this endpoint when you need comprehensive details about a single specific free-to-play game and already know its numeric ID. Prefer this over a game list or search endpoint when the user wants in-depth information — system requirements, full description, screenshots — for one title rather than browsing multiple games.

## Known failure modes

- Invalid or non-existent game ID returns an error or empty response
- Game has been removed from FreeToGame database
- Upstream FreeToGame API unavailable, causing timeout or 5xx error
- Missing required body fields causes a 400 bad request
- Network timeout if the upstream service is slow

## How this service works

Detailed info for a single free-to-play game by ID: full description, status, system requirements and screenshots. Keyless FreeToGame. For agents deep-diving one title.

## Output

Returns comprehensive details for the specified free-to-play game including its full description, current status (active/shutdown), minimum and recommended system requirements, genre, platform, developer, publisher, release date, and a list of screenshot URLs.

## 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/freetogame-single-game-detail-lookup-5ff6b653/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)
