# PoketPoker Hand Record – QdQs

> PoketPoker Hand Record – QdQs 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 full statistical record for the Texas Hold'em starting hand Queen of Diamonds / Queen of Spades, including equity vs. ranges, position-based opening guidance, head-to-head figures, and card-removal effects.

## Facts

- Endpoint: GET https://poketpoker.com/api/hands/QdQs
- 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-hand-record-qdqs-0dd63751
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8l6UglRZjxRVK6jr2SBC8

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-hand-record-qdqs-0dd63751
```

Example prompt: Pull the full PoketPoker hand record for Queen of Diamonds and Queen of Spades — I want equity against modelled ranges, position-by-position opening guidance, the exact head-to-head figures, and the card-removal effect for QdQs.

## When to prefer this

Use this endpoint when you need the comprehensive statistical profile of a specific two-card Texas Hold'em starting hand, including equity, positional strategy, and card-removal data all in one call. Prefer this over the head-to-head endpoint when you want the full multi-dimensional record rather than a single matchup comparison, and over the position-opening endpoint when you want all positions at once plus additional equity data.

## Known failure modes

- Invalid hand ID format (not matching ^[2-9TJQKA][cdhs][2-9TJQKA][cdhs]$) returns a validation error
- Duplicate card specification (e.g. QdQd) may return an error or undefined result
- Service unavailability returns a non-200 HTTP status
- Payment failure via x402 protocol results in 402 response and no data returned

## 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 structured JSON record for the QdQs starting hand containing: equity percentages against modelled opponent ranges, position-by-position opening recommendations (e.g. UTG, MP, CO, BTN, SB), exact head-to-head equity figures against specific hands, and the card-removal effect caused by holding these two specific 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-hand-record-qdqs-0dd63751/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)
