# PoketPoker Opening Hand Advisor

> PoketPoker Opening Hand Advisor 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).

Recommends whether to open a specific Texas Hold'em starting hand from a named position against a given number of opponents, backed by equity calculations.

## Facts

- Endpoint: GET https://poketpoker.com/api/advice
- 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-opening-hand-advisor-932700d5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aFD2Vs0uBGgRtfakjzkmI

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-opening-hand-advisor-932700d5
```

Example prompt: Should I open Ace-King suited (AKs) from UTG against 4 opponents at a Texas Hold'em table? Give me the recommendation and the equity behind it.

## When to prefer this

Use this endpoint when you need a quick, equity-backed open/fold recommendation for a specific hand, position, and opponent count in Texas Hold'em. It is ideal for real-time decision support at the table or for building preflop range charts. Prefer it over the full hand record endpoints when you only need the actionable advice and equity for one scenario rather than the complete hand profile.

## Known failure modes

- Invalid hand notation — unrecognized card combination returns an error
- Position name not recognized — must use standard poker position labels (UTG, MP, CO, BTN, SB, BB)
- Opponents out of range (must be 1-7) returns a validation error
- Missing required query parameter (hand, position, or opponents) returns a 400 error
- Payment not attached or insufficient — returns 402 Payment Required

## How this service works

Whether to open a specific Texas Hold'em starting hand from a named position against a given number of opponents, with the engine equity behind the answer.

## Output

Returns a recommendation (open or fold) for the specified starting hand from the given position against the stated number of opponents, along with the underlying equity figure used to justify the advice.

## 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": [
      "hand",
      "position",
      "opponents"
     ],
     "properties": {
      "hand": {
       "type": "string"
      },
      "position": {
       "type": "string"
      },
      "opponents": {
       "type": "integer",
       "maximum": 7,
       "minimum": 1
      }
     }
    }
   },
   "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-opening-hand-advisor-932700d5/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)
