# GamePulse PC Compatibility Checker

> GamePulse PC Compatibility Checker is a paid API for AI agents from gamepulse-zeta.vercel.app, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-15).

Checks whether a PC with given hardware specs can run a specific game, returning expected graphics settings and FPS performance.

## Facts

- Endpoint: GET https://gamepulse-zeta.vercel.app/api/gaming/specs
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gamepulse-pc-compatibility-checker-d3754a3e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wbs_CnQvE0tMWAj49KDzX

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 gamepulse-pc-compatibility-checker-d3754a3e
```

Example prompt: Can my PC run Cyberpunk 2077? I have an Intel Core i7-12700K, an RTX 3070, and 16GB of RAM — I want to know what settings I should use and what FPS I can expect.

## When to prefer this

Use this endpoint when a user wants to know if their specific PC hardware can run a particular game and at what quality settings — especially before purchasing a game or upgrading hardware. Prefer this over general spec-sheet lookups when you need actionable FPS and settings recommendations tailored to the user's exact configuration.

## Known failure modes

- Unknown game title returns an error or null result
- Unrecognized or very old GPU/CPU model may yield inaccurate predictions
- Missing required hardware fields causes a 400 bad request
- Game not yet in the database returns a not-found error
- Very new hardware with limited benchmarking data may have low-confidence estimates

## How this service works

PC compatibility check for gamer and PC-builder agents. Answers whether a PC can run a game, with expected settings and FPS.

## Output

Returns a compatibility verdict (yes/no/marginal), the recommended graphics preset (low/medium/high/ultra), estimated FPS range at those settings, and a comparison of the PC's specs against the game's minimum and recommended 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "game"
     ],
     "properties": {
      "cpu": {
       "type": "string",
       "description": "CPU model"
      },
      "gpu": {
       "type": "string",
       "description": "GPU model"
      },
      "ram": {
       "type": "string",
       "description": "RAM (GB)"
      },
      "game": {
       "type": "string",
       "description": "Game title"
      },
      "lang": {
       "type": "string",
       "description": "Response language (default en)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gamepulse-pc-compatibility-checker-d3754a3e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from gamepulse-zeta.vercel.app](https://www.zero.xyz/host/gamepulse-zeta.vercel.app/llms.txt)
