# GamePulse Game Completion Time Estimator

> GamePulse Game Completion Time Estimator is a paid API for AI agents from gamepulse-zeta.vercel.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns main-story, completionist, and full playtime time estimates for any specified game

## Facts

- Endpoint: GET https://gamepulse-zeta.vercel.app/api/gaming/time
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gamepulse-game-completion-time-estimator-4ad9b894
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lk7xB2w8EarXMUsyzDB1j

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-game-completion-time-estimator-4ad9b894
```

Example prompt: How long will it take me to beat Elden Ring — give me the main story time, the completionist time, and the full playtime estimate.

## When to prefer this

Use this endpoint when an agent or user needs to know how long it will take to complete a specific video game, whether for the main story, full completionist run, or everything in between. Prefer this over general game info APIs when playtime estimation is the primary need.

## Known failure modes

- Game title not found or unrecognized — returns error or empty result
- Ambiguous game title matching multiple entries — may return wrong game data
- Game too new or obscure with insufficient data — returns null or unavailable estimates
- API payment failure via x402 — request rejected before data is returned

## How this service works

Game completion time estimator for gamer agents. Returns main-story, completionist, and full playtime estimates for any game.

## Output

Returns structured playtime estimates including main story duration, completionist (100%) duration, and full/all-content playtime for the requested game, likely in hours.

## 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)"
      }
     }
    }
   },
   "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-game-completion-time-estimator-4ad9b894/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)
