{"ok":true,"schema_version":1,"data":{"agent_readiness":{"blocker_level":"missing-data","blockers":[{"code":"missing-schema","field":"schemas","message":"At least one callable service exists, but no captured schema artifact is available.","next_action":"Capture an official OpenAPI/Swagger/JSON Schema source or document that no schema exists.","severity":"missing-data"}],"missing_fields":["schemas"],"status":"callable"},"categories":["baseline-augmented","baseline-curated","identity-reviewed","official-source-repo","official-website","security"],"completeness_score":78,"contract_version":"2026-07-03.2","example_count":0,"examples":[],"generated_at":"2026-07-27T10:51:25.049Z","integration_readiness":86,"name":"Poker44","netuid":126,"readiness":{"components":{"active_lifecycle":true,"auth_clarity":true,"callable_now":true,"documented":false,"has_callable_api":true,"has_candidate_api":true,"has_public_docs":true,"has_source_repo":true,"profile_complete":true},"readiness_tier":"buildable","readiness_version":2,"score":86,"readiness_verified":true},"schema_version":1,"service_count":5,"services":[{"auth":null,"auth_required":false,"auth_schemes":[],"authority":"community","base_url":"https://api.poker44.net/api/v1/benchmark/chunks/%7BchunkId%7D","capability":"Poker44 single benchmark chunk by ID","description":"Public no-auth GET /api/v1/benchmark/chunks/{chunkId} on api.poker44.net returning the full hand-history payload for a specific benchmark chunk (chunkHash, hand records with game_type, seats, streets, actions). Documented in docs/training-benchmark.md. Live-verified 2026-07-22: GET /api/v1/benchmark/chunks/0185b8b3-8fe5-40c3-aa2a-e3ab0fb7e45c returned HTTP 200. Register with the literal {chunkId} template and probe.enabled:false (path-param — no stable canonical chunk ID for the prober to use).","eligibility":{"callable":false,"reasons":["not-bittensor-base-layer","status-unknown"],"live_status":"unknown"},"fixture_status":{"artifact_path":null,"captured_at":null,"reason":"fixture capture only samples enabled GET probes","status":"non-get"},"health":{"status":"unknown","classification":null,"latency_ms":null,"last_ok":null,"last_checked":null,"stale":false,"observed_by":"unavailable"},"kind":"data-artifact","provider":"poker44","schema_artifact":null,"schema_source":null,"schema_status":null,"schema_url":null,"snippets":{"curl":"curl -sS 'https://api.poker44.net/api/v1/benchmark/chunks/%7BchunkId%7D'","python":"import requests\n\nresp = requests.get(\"https://api.poker44.net/api/v1/benchmark/chunks/%7BchunkId%7D\")\nresp.raise_for_status()\nprint(resp.json())","typescript":"const resp = await fetch(\"https://api.poker44.net/api/v1/benchmark/chunks/%7BchunkId%7D\");\nif (!resp.ok) throw new Error(`HTTP ${resp.status}`);\nconst data = await resp.json();"},"surface_id":"sn-126-poker44-benchmark-chunk-item"},{"auth":null,"auth_required":false,"auth_schemes":[],"authority":"community","base_url":"https://api.poker44.net/api/v1/benchmark/chunks","capability":"Poker44 benchmark chunks for a source date","description":"Public no-auth GET /api/v1/benchmark/chunks?sourceDate=YYYY-MM-DD on api.poker44.net returning the paginated list of chunk metadata (chunkId, chunkHash, chunkIndex, handCount, batchCount, releasedAt) for a given release date. Documented as a standalone route in docs/training-benchmark.md (GET /api/v1/benchmark/chunks with optional limit param). Live-verified 2026-07-22: GET /api/v1/benchmark/chunks?sourceDate=2026-07-22&limit=1 returned HTTP 200 with chunk data (chunkId 0185b8b3-8fe5-40c3-aa2a-e3ab0fb7e45c). Register with the fixed base URL and probe.enabled:false (requires caller-supplied sourceDate query param).","eligibility":{"callable":false,"reasons":["not-bittensor-base-layer","status-unknown"],"live_status":"unknown"},"fixture_status":{"artifact_path":null,"captured_at":null,"reason":"fixture capture only samples enabled GET probes","status":"non-get"},"health":{"status":"unknown","classification":null,"latency_ms":null,"last_ok":null,"last_checked":null,"stale":false,"observed_by":"unavailable"},"kind":"data-artifact","provider":"poker44","schema_artifact":null,"schema_source":null,"schema_status":null,"schema_url":null,"snippets":{"curl":"curl -sS 'https://api.poker44.net/api/v1/benchmark/chunks'","python":"import requests\n\nresp = requests.get(\"https://api.poker44.net/api/v1/benchmark/chunks\")\nresp.raise_for_status()\nprint(resp.json())","typescript":"const resp = await fetch(\"https://api.poker44.net/api/v1/benchmark/chunks\");\nif (!resp.ok) throw new Error(`HTTP ${resp.status}`);\nconst data = await resp.json();"},"surface_id":"sn-126-poker44-benchmark-chunks"},{"auth":null,"auth_required":false,"auth_schemes":[],"authority":"community","base_url":"https://api.poker44.net/api/v1/benchmark/releases","capability":"Poker44 benchmark release history","description":"Public no-auth GET /api/v1/benchmark/releases on api.poker44.net returning the history of published shadow-training benchmark releases (per-release chunk/hand counts, audit thresholds, source dates). Explicitly documented as a standalone route in docs/training-benchmark.md alongside the already-tracked /api/v1/benchmark status endpoint; the sibling /api/v1/benchmark/chunks route requires a sourceDate/chunkId parameter and is not promotable. No wallet/hotkey data.","eligibility":{"callable":true,"reasons":["not-bittensor-base-layer"],"live_status":"ok"},"fixture":{"artifact_path":"/metagraph/fixtures/sn-126-poker44-benchmark-releases.json","captured_at":"2026-07-27T10:51:25.372Z","request":{"method":"GET","url":"https://api.poker44.net/api/v1/benchmark/releases"},"response":{"content_type":"application/json; charset=utf-8","status":200}},"fixture_status":{"artifact_path":"/metagraph/fixtures/sn-126-poker44-benchmark-releases.json","captured_at":"2026-07-27T10:51:25.372Z","reason":null,"status":"available"},"health":{"status":"ok","classification":"live","latency_ms":119,"last_ok":"2026-07-27T22:30:18.289Z","last_checked":"2026-07-27T22:30:18.289Z","stale":false,"observed_by":"live-cron-prober"},"kind":"data-artifact","provider":"poker44","schema_artifact":null,"schema_source":null,"schema_status":null,"schema_url":null,"snippets":{"curl":"curl -sS 'https://api.poker44.net/api/v1/benchmark/releases'","python":"import requests\n\nresp = requests.get(\"https://api.poker44.net/api/v1/benchmark/releases\")\nresp.raise_for_status()\nprint(resp.json())","typescript":"const resp = await fetch(\"https://api.poker44.net/api/v1/benchmark/releases\");\nif (!resp.ok) throw new Error(`HTTP ${resp.status}`);\nconst data = await resp.json();"},"surface_id":"sn-126-poker44-benchmark-releases"},{"auth":null,"auth_required":false,"auth_schemes":[],"authority":"community","base_url":"https://api.poker44.net/api/v1/benchmark","capability":"Poker44 shadow-training benchmark dataset","description":"Public no-auth GET /api/v1/benchmark on api.poker44.net — the official Poker44 (SN126) benchmark dataset release endpoint documented in the subnet repo's docs/training-benchmark.md (GET /api/v1/benchmark, GET /api/v1/benchmark/releases). Returns JSON release metadata (observed releaseVersion v1.13, schemaVersion shadow-training-v1, 121 chunks / 29,680 hands, auto-release schedule); miners fetch the hand chunks from this endpoint. Same api.poker44.net host as the already-listed platform health surface.","eligibility":{"callable":true,"reasons":["not-bittensor-base-layer"],"live_status":"ok"},"fixture":{"artifact_path":"/metagraph/fixtures/sn-126-poker44-data-artifact.json","captured_at":"2026-07-27T10:51:25.372Z","request":{"method":"GET","url":"https://api.poker44.net/api/v1/benchmark"},"response":{"content_type":"application/json; charset=utf-8","status":200}},"fixture_status":{"artifact_path":"/metagraph/fixtures/sn-126-poker44-data-artifact.json","captured_at":"2026-07-27T10:51:25.372Z","reason":null,"status":"available"},"health":{"status":"ok","classification":"live","latency_ms":104,"last_ok":"2026-07-27T22:30:18.289Z","last_checked":"2026-07-27T22:30:18.289Z","stale":false,"observed_by":"live-cron-prober"},"kind":"data-artifact","provider":"poker44","schema_artifact":null,"schema_source":null,"schema_status":null,"schema_url":null,"snippets":{"curl":"curl -sS 'https://api.poker44.net/api/v1/benchmark'","python":"import requests\n\nresp = requests.get(\"https://api.poker44.net/api/v1/benchmark\")\nresp.raise_for_status()\nprint(resp.json())","typescript":"const resp = await fetch(\"https://api.poker44.net/api/v1/benchmark\");\nif (!resp.ok) throw new Error(`HTTP ${resp.status}`);\nconst data = await resp.json();"},"surface_id":"sn-126-poker44-data-artifact"},{"auth":null,"auth_required":false,"auth_schemes":[],"authority":"community","base_url":"https://api.poker44.net/health","capability":"Poker44 platform health API","description":"Public no-auth GET /health on api.poker44.net returning platform liveness JSON (observed: status healthy, database and redis connected). Same host as the internal validator routes configured in the official Poker44-subnet validator neuron.","eligibility":{"callable":true,"reasons":["not-bittensor-base-layer"],"live_status":"ok"},"fixture":{"artifact_path":"/metagraph/fixtures/sn-126-poker44-health.json","captured_at":"2026-07-27T10:51:25.372Z","request":{"method":"GET","url":"https://api.poker44.net/health"},"response":{"content_type":"application/json; charset=utf-8","status":200}},"fixture_status":{"artifact_path":"/metagraph/fixtures/sn-126-poker44-health.json","captured_at":"2026-07-27T10:51:25.372Z","reason":null,"status":"available"},"health":{"status":"ok","classification":"live","latency_ms":133,"last_ok":"2026-07-27T22:30:18.289Z","last_checked":"2026-07-27T22:30:18.289Z","stale":false,"observed_by":"live-cron-prober"},"kind":"subnet-api","provider":"poker44","schema_artifact":null,"schema_source":null,"schema_status":null,"schema_url":null,"snippets":{"curl":"curl -sS 'https://api.poker44.net/health'","python":"import requests\n\nresp = requests.get(\"https://api.poker44.net/health\")\nresp.raise_for_status()\nprint(resp.json())","typescript":"const resp = await fetch(\"https://api.poker44.net/health\");\nif (!resp.ok) throw new Error(`HTTP ${resp.status}`);\nconst data = await resp.json();"},"surface_id":"sn-126-poker44-health"}],"slug":"sn-126","subnet_type":"application","operational_observed_at":"2026-07-27T22:30:18.289Z","health_source":"live-cron-prober"},"meta":{"artifact_path":"/metagraph/agent-catalog/126.json","cache":"standard","contract_version":"2026-07-03.2","generated_at":"2026-07-27T10:51:25.049Z","published_at":"2026-07-27T10:51:25.049Z","source":"live-cron-prober","operational_observed_at":"2026-07-27T22:30:18.289Z"}}