# GamePulse Achievement Hunting Guide

> GamePulse Achievement Hunting Guide 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).

Returns trophy and achievement tips, strategies, and guides for 100% completion of any specified game

## Facts

- Endpoint: GET https://gamepulse-zeta.vercel.app/api/gaming/achievements
- 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-achievement-hunting-guide-b06661ef
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__0E-EJKYRSqVnwA6h2gJF

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-achievement-hunting-guide-b06661ef
```

Example prompt: Can you pull up the achievement hunting guide for Elden Ring? I want tips on how to get 100% completion including any missable trophies or tricky unlocks.

## When to prefer this

Use this endpoint when a user needs a trophy or achievement guide, wants to reach 100% game completion, or is hunting for a platinum trophy in a specific game. Prefer over general game info endpoints when the specific goal is achievement/trophy completion strategy.

## Known failure modes

- Game not found or not in database — returns empty or error response
- Unsupported or very obscure game title — may return generic or null results
- Malformed game name input — may cause lookup failure
- Service unavailable — HTTP 500 or timeout

## How this service works

Achievement hunting guide for gamer agents. Returns trophy and achievement tips for 100% completion of any game.

## Output

A structured guide with trophy and achievement tips, strategies for unlocking difficult achievements, missable item warnings, and recommendations for reaching 100% game completion for the specified game.

## 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": {
      "game": {
       "type": "string",
       "description": "Game title"
      },
      "lang": {
       "type": "string",
       "description": "Response language (default en)"
      },
      "achievement": {
       "type": "string",
       "description": "Specific achievement (optional)"
      }
     }
    }
   },
   "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-achievement-hunting-guide-b06661ef/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)
