# GamePulse Gaming PC Build Recommender

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

Returns optimized gaming PC build recommendations tailored to a specified budget

## Facts

- Endpoint: GET https://gamepulse-zeta.vercel.app/api/gaming/setup
- 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/gamepulse-gaming-pc-build-recommender-309c1fef
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_W3u4wM4jqSIgH9btI40MA

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-gaming-pc-build-recommender-309c1fef
```

Example prompt: Can you recommend an optimized gaming PC build for around $1,200 that can handle modern AAA titles at 1080p high settings?

## When to prefer this

Use this endpoint when a user wants curated, budget-specific gaming PC build recommendations without needing to manually research and compare individual components. Ideal for first-time PC builders or gamers who want an optimized parts list without the research overhead.

## Known failure modes

- Invalid or missing budget parameter returns error
- Budget too low to build a functional PC may return error or minimal build
- Network timeout on Vercel serverless function
- Payment failure via x402 protocol blocks access
- Overly broad or ambiguous requirements may return generic recommendations

## How this service works

Gaming PC build recommendations for gamer and PC-builder agents. Returns optimized build recommendations for any budget.

## Output

Returns a complete, optimized gaming PC build configuration including recommended components (CPU, GPU, RAM, storage, motherboard, PSU, case), price breakdown, and performance expectations tailored to the specified budget.

## 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",
     "properties": {
      "budget": {
       "type": "integer",
       "description": "Budget in USD ($200-$10,000)"
      }
     }
    }
   },
   "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-gaming-pc-build-recommender-309c1fef/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)
