# PoketPoker Starting Hand Full Record

> PoketPoker Starting Hand Full Record is a paid API for AI agents from poketpoker.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns the complete statistical profile for a specific Texas Hold'em starting hand, including equity against modelled ranges, position-based opening guidance, head-to-head figures, and card-removal effects.

## Facts

- Endpoint: GET https://poketpoker.com/api/hands/AhKh
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/poketpoker-starting-hand-full-record-39f433ee
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OU6I_K8-OwTQMN1uRHxar

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 poketpoker-starting-hand-full-record-39f433ee
```

Example prompt: Pull up the full PoketPoker stats for ace-king suited — I want the equity against typical ranges, position-by-position opening guidance, head-to-head numbers, and the card removal effects for that hand.

## When to prefer this

Choose this endpoint when you need a comprehensive, all-in-one profile for a specific two-card Texas Hold'em starting hand, including equity against ranges, positional guidance, and card-removal effects in a single call. Prefer it over the head-to-head equity endpoint (which compares two specific hands) or the position-opening endpoint (which answers a narrower open/fold question) when you want the full picture for one hand. Ideal for study tools, poker coaching agents, hand review workflows, or any use case requiring rich preflop metadata about a particular hand.

## Known failure modes

- Invalid hand ID format (must match pattern ^[2-9TJQKA][cdhs][2-9TJQKA][cdhs]$) — returns 400 or validation error
- Duplicate card specified (e.g. AhAh impossible) — likely returns error
- Payment not processed (x402 payment required) — returns 402 Payment Required
- Hand ID uses incorrect rank/suit notation — returns validation error
- Network timeout or service unavailability — returns 5xx error

## How this service works

The full record for one of the 1,326 specific Texas Hold'em starting hands: equity against modelled ranges, position-by-position opening guidance, exact head-to-head figures, and the exact card-removal effect of holding these specific two cards.

## Output

A full statistical record for the requested two-card starting hand, including equity percentages against modelled opponent ranges, position-specific opening recommendations (e.g. UTG, HJ, CO, BTN, SB), exact head-to-head equity against individual hands, and the card-removal effect quantifying how holding these specific cards affects the distribution of remaining deck cards.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "pattern": "^[2-9TJQKA][cdhs][2-9TJQKA][cdhs]$"
      }
     }
    }
   },
   "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/poketpoker-starting-hand-full-record-39f433ee/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from poketpoker.com](https://www.zero.xyz/host/poketpoker.com/llms.txt)
