# 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-16).

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

## Facts

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

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-c600108e
```

Example prompt: Pull up the full PoketPoker stats for Ace of clubs and Five of spades — I want to see the equity against modelled ranges, where I should be opening it from, and the card-removal effect of holding those specific cards.

## When to prefer this

Choose this endpoint when you need a comprehensive, pre-computed statistical profile for a specific two-card Texas Hold'em starting hand covering equity, positional guidance, and blocker effects in a single call. Prefer the head-to-head endpoint when you only need equity between two specific hands. Prefer the positional opening endpoint when you only need position-specific opening advice for a given number of opponents. Use this endpoint when you want the complete hand record in one place.

## Known failure modes

- Invalid hand ID format (must match ^[2-9TJQKA][cdhs][2-9TJQKA][cdhs]$) returns a validation error
- Same card specified twice (e.g. AcAc) is an impossible hand and may return an error
- Reversed or equivalent hand notation may or may not be normalized — check for canonical ordering
- Payment failure or insufficient USDC balance returns a 402 response
- Network timeout on slow connections

## 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 record for the specified two-card starting hand, including: equity percentages against modelled opponent ranges, position-by-position opening recommendations (e.g. whether to open from UTG, HJ, CO, BTN, SB), exact head-to-head equity figures versus specific opponent hands, and the card-removal (blocker) effect quantifying how holding these two cards affects the probability distribution of opponent holdings.

## 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-c600108e/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)
