{"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"},{"code":"unclear-auth","field":"auth","message":"Callable services exist, but auth requirements are not fully machine-readable.","next_action":"Declare auth_required/auth_schemes or capture auth metadata from the service schema.","severity":"missing-data"},{"code":"missing-docs","field":"docs_url","message":"No public documentation link is recorded.","next_action":"Add an official docs URL or document that no public docs exist.","severity":"missing-data"}],"missing_fields":["auth","docs_url","schemas"],"status":"callable"},"categories":["baseline-augmented","baseline-curated","identity-reviewed","official-source-repo","official-website"],"completeness_score":78,"contract_version":"2026-07-03.2","example_count":0,"examples":[],"generated_at":"2026-07-27T10:51:25.049Z","integration_readiness":68,"name":"minotaur","netuid":112,"readiness":{"components":{"active_lifecycle":true,"auth_clarity":false,"callable_now":true,"documented":false,"has_callable_api":true,"has_candidate_api":true,"has_public_docs":false,"has_source_repo":true,"profile_complete":true},"readiness_tier":"buildable","readiness_version":2,"score":68,"readiness_verified":true},"schema_version":1,"service_count":8,"services":[{"auth":{"location":"header","names":["X-App-Auth-Signer","X-App-Auth-Signature","X-App-Auth-Deadline"],"scheme":"signature","scopes_note":"Requires an EIP-712 wallet-signed request: the X-App-Auth-Signer, X-App-Auth-Signature, and X-App-Auth-Deadline headers, documented in the subnet's own official app-management API reference (docs/api/app-management.md) -- reads (this route among them) are deadline-bound only, unlike writes which additionally need a single-use X-App-Auth-Nonce. The signature must be an EIP-712 signature from an allowed signer (the app's own deployer or an operator admin address) over a paramsHash binding this request's specific parameters -- computing it is the caller's own responsibility. Live-verified 2026-07-22: an unauthenticated request returns HTTP 403. No admin key or bearer token is accepted for this route."},"auth_required":true,"auth_schemes":[],"authority":"community","base_url":"https://api.minotaursubnet.com/v1/apps/%7Bapp_id%7D/admin-state","capability":"minotaur app operator state (auth-gated)","description":"GET /v1/apps/{app_id}/admin-state -- full operator view (store record, live per-chain config, fee-settlement balances, registry status), listed in the official doc's Reads table under its signature-gated App-management auth class. Live-verified 2026-07-22 (~08:25 UTC) with a real app_id: HTTP 403 JSON rejected unauthenticated -- auth-gated in practice, exactly as the linked issue's own live test found. Registered auth_required:true, probe.enabled:false per the issue's instruction.","eligibility":{"callable":false,"reasons":["not-bittensor-base-layer","status-unknown","auth-required"],"live_status":"unknown"},"fixture_status":{"artifact_path":null,"captured_at":null,"reason":"fixture capture skips credentialed services","status":"auth-required"},"health":{"status":"unknown","classification":null,"latency_ms":null,"last_ok":null,"last_checked":null,"stale":false,"observed_by":"unavailable"},"kind":"subnet-api","provider":"minotaur","schema_artifact":null,"schema_source":null,"schema_status":null,"schema_url":null,"snippets":{"curl":"curl -sS 'https://api.minotaursubnet.com/v1/apps/%7Bapp_id%7D/admin-state' \\\n  -H 'Authorization: Bearer YOUR_API_KEY'","python":"import requests\n\nresp = requests.get(\"https://api.minotaursubnet.com/v1/apps/%7Bapp_id%7D/admin-state\", headers={\"Authorization\": \"Bearer YOUR_API_KEY\"})\nresp.raise_for_status()\nprint(resp.json())","typescript":"const resp = await fetch(\"https://api.minotaursubnet.com/v1/apps/%7Bapp_id%7D/admin-state\", {\n  headers: { \"Authorization\": \"Bearer YOUR_API_KEY\" },\n});\nif (!resp.ok) throw new Error(`HTTP ${resp.status}`);\nconst data = await resp.json();"},"surface_id":"sn-112-minotaur-app-admin-state"},{"auth":null,"auth_required":false,"auth_schemes":[],"authority":"community","base_url":"https://api.minotaursubnet.com/v1/apps/%7Bapp_id%7D/auth-nonce","capability":"minotaur app auth-nonce read","description":"GET /v1/apps/{app_id}/auth-nonce (optional deployer query param) -- issues the next single-use nonce used to sign app-management writes; necessarily callable without a credential, per the official doc and the linked issue. Live-verified 2026-07-22 (~08:25 UTC) with a real app_id: HTTP 200 JSON {app_id, deployer, next_nonce} both bare (defaults to the app's registered deployer) and with an explicit placeholder deployer query value. Path-parameterized, probe.enabled:false per the linked issue's instruction.","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":"subnet-api","provider":"minotaur","schema_artifact":null,"schema_source":null,"schema_status":null,"schema_url":null,"snippets":{"curl":"curl -sS 'https://api.minotaursubnet.com/v1/apps/%7Bapp_id%7D/auth-nonce'","python":"import requests\n\nresp = requests.get(\"https://api.minotaursubnet.com/v1/apps/%7Bapp_id%7D/auth-nonce\")\nresp.raise_for_status()\nprint(resp.json())","typescript":"const resp = await fetch(\"https://api.minotaursubnet.com/v1/apps/%7Bapp_id%7D/auth-nonce\");\nif (!resp.ok) throw new Error(`HTTP ${resp.status}`);\nconst data = await resp.json();"},"surface_id":"sn-112-minotaur-app-auth-nonce"},{"auth":{"location":"header","names":["X-App-Auth-Signer","X-App-Auth-Signature","X-App-Auth-Deadline"],"scheme":"signature","scopes_note":"Requires an EIP-712 wallet-signed request: the X-App-Auth-Signer, X-App-Auth-Signature, and X-App-Auth-Deadline headers, documented in the subnet's own official app-management API reference (docs/api/app-management.md) -- reads (this route among them) are deadline-bound only, unlike writes which additionally need a single-use X-App-Auth-Nonce. The signature must be an EIP-712 signature from an allowed signer (the app's own deployer or an operator admin address) over a paramsHash binding this request's specific parameters -- computing it is the caller's own responsibility. Live-verified 2026-07-22: an unauthenticated request returns HTTP 403. No admin key or bearer token is accepted for this route."},"auth_required":true,"auth_schemes":[],"authority":"community","base_url":"https://api.minotaursubnet.com/v1/apps/%7Bapp_id%7D/deployments/%7Bchain_id%7D/registry-calldata","capability":"minotaur app registry calldata (auth-gated)","description":"GET /v1/apps/{app_id}/deployments/{chain_id}/registry-calldata -- prepared transaction calldata for external signing, documented in the same signature-gated auth class as admin-state (deadline-bound reads). Live-verified 2026-07-22 (~08:25 UTC) with a real app_id and a real chain_id from the already-registered /v1/chains surface: HTTP 403 JSON rejected unauthenticated (stronger than the linked issue's own evidence, which did not spot-verify this route). Registered auth_required:true, probe.enabled:false per the issue's instruction.","eligibility":{"callable":false,"reasons":["not-bittensor-base-layer","status-unknown","auth-required"],"live_status":"unknown"},"fixture_status":{"artifact_path":null,"captured_at":null,"reason":"fixture capture skips credentialed services","status":"auth-required"},"health":{"status":"unknown","classification":null,"latency_ms":null,"last_ok":null,"last_checked":null,"stale":false,"observed_by":"unavailable"},"kind":"subnet-api","provider":"minotaur","schema_artifact":null,"schema_source":null,"schema_status":null,"schema_url":null,"snippets":{"curl":"curl -sS 'https://api.minotaursubnet.com/v1/apps/%7Bapp_id%7D/deployments/%7Bchain_id%7D/registry-calldata' \\\n  -H 'Authorization: Bearer YOUR_API_KEY'","python":"import requests\n\nresp = requests.get(\"https://api.minotaursubnet.com/v1/apps/%7Bapp_id%7D/deployments/%7Bchain_id%7D/registry-calldata\", headers={\"Authorization\": \"Bearer YOUR_API_KEY\"})\nresp.raise_for_status()\nprint(resp.json())","typescript":"const resp = await fetch(\"https://api.minotaursubnet.com/v1/apps/%7Bapp_id%7D/deployments/%7Bchain_id%7D/registry-calldata\", {\n  headers: { \"Authorization\": \"Bearer YOUR_API_KEY\" },\n});\nif (!resp.ok) throw new Error(`HTTP ${resp.status}`);\nconst data = await resp.json();"},"surface_id":"sn-112-minotaur-app-registry-calldata"},{"auth":null,"auth_required":false,"auth_schemes":[],"authority":"community","base_url":"https://api.minotaursubnet.com/v1/apps/%7Bapp_id%7D/status","capability":"minotaur app deployment status","description":"GET /v1/apps/{app_id}/status -- per-app + per-chain deployment status (the deploy-poll target), listed in the official app-management doc's Reads table. Live-verified 2026-07-22 (~08:25 UTC) with a real app_id taken from the already-registered /v1/apps/ list: HTTP 200 JSON returning the app record + status, no credential required. Path-parameterized (percent-encoded template), so probe.enabled:false per the linked issue's own instruction.","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":"subnet-api","provider":"minotaur","schema_artifact":null,"schema_source":null,"schema_status":null,"schema_url":null,"snippets":{"curl":"curl -sS 'https://api.minotaursubnet.com/v1/apps/%7Bapp_id%7D/status'","python":"import requests\n\nresp = requests.get(\"https://api.minotaursubnet.com/v1/apps/%7Bapp_id%7D/status\")\nresp.raise_for_status()\nprint(resp.json())","typescript":"const resp = await fetch(\"https://api.minotaursubnet.com/v1/apps/%7Bapp_id%7D/status\");\nif (!resp.ok) throw new Error(`HTTP ${resp.status}`);\nconst data = await resp.json();"},"surface_id":"sn-112-minotaur-app-status"},{"auth":null,"auth_required":false,"auth_schemes":[],"authority":"community","base_url":"https://api.minotaursubnet.com/v1/apps/","capability":"Minotaur deployed apps list","description":"Public no-auth GET /v1/apps/ on api.minotaursubnet.com returning the list of deployed intent-processing apps, each carrying a per-chain deployments map and source (JS scoring module + Solidity). Documented in the app-management API reference (docs/api/app-management.md) as an intentionally open read.","eligibility":{"callable":true,"reasons":["not-bittensor-base-layer"],"live_status":"ok"},"fixture":{"artifact_path":"/metagraph/fixtures/sn-112-minotaur-apps-list.json","captured_at":"2026-07-27T10:51:25.372Z","request":{"method":"GET","url":"https://api.minotaursubnet.com/v1/apps/"},"response":{"content_type":"application/json","status":200}},"fixture_status":{"artifact_path":"/metagraph/fixtures/sn-112-minotaur-apps-list.json","captured_at":"2026-07-27T10:51:25.372Z","reason":null,"status":"available"},"health":{"status":"ok","classification":"live","latency_ms":306,"last_ok":"2026-07-27T23:00:18.289Z","last_checked":"2026-07-27T23:00:18.289Z","stale":false,"observed_by":"live-cron-prober"},"kind":"subnet-api","provider":"minotaur","schema_artifact":null,"schema_source":null,"schema_status":null,"schema_url":null,"snippets":{"curl":"curl -sS 'https://api.minotaursubnet.com/v1/apps/'","python":"import requests\n\nresp = requests.get(\"https://api.minotaursubnet.com/v1/apps/\")\nresp.raise_for_status()\nprint(resp.json())","typescript":"const resp = await fetch(\"https://api.minotaursubnet.com/v1/apps/\");\nif (!resp.ok) throw new Error(`HTTP ${resp.status}`);\nconst data = await resp.json();"},"surface_id":"sn-112-minotaur-apps-list"},{"auth":null,"auth_required":false,"auth_schemes":[],"authority":"community","base_url":"https://api.minotaursubnet.com/v1/chains","capability":"Minotaur chain registry addresses","description":"Public no-auth GET /v1/chains on api.minotaursubnet.com returning per-chain registry contract addresses (chain_id, name, rpc_available, registry_address, app_registry_address) for Ethereum, Base, and BT EVM. Documented in the app-management API reference (docs/api/app-management.md).","eligibility":{"callable":true,"reasons":["not-bittensor-base-layer"],"live_status":"ok"},"fixture":{"artifact_path":"/metagraph/fixtures/sn-112-minotaur-chains.json","captured_at":"2026-07-27T10:51:25.372Z","request":{"method":"GET","url":"https://api.minotaursubnet.com/v1/chains"},"response":{"content_type":"application/json","status":200}},"fixture_status":{"artifact_path":"/metagraph/fixtures/sn-112-minotaur-chains.json","captured_at":"2026-07-27T10:51:25.372Z","reason":null,"status":"available"},"health":{"status":"ok","classification":"live","latency_ms":310,"last_ok":"2026-07-27T23:00:18.289Z","last_checked":"2026-07-27T23:00:18.289Z","stale":false,"observed_by":"live-cron-prober"},"kind":"data-artifact","provider":"minotaur","schema_artifact":null,"schema_source":null,"schema_status":null,"schema_url":null,"snippets":{"curl":"curl -sS 'https://api.minotaursubnet.com/v1/chains'","python":"import requests\n\nresp = requests.get(\"https://api.minotaursubnet.com/v1/chains\")\nresp.raise_for_status()\nprint(resp.json())","typescript":"const resp = await fetch(\"https://api.minotaursubnet.com/v1/chains\");\nif (!resp.ok) throw new Error(`HTTP ${resp.status}`);\nconst data = await resp.json();"},"surface_id":"sn-112-minotaur-chains"},{"auth":null,"auth_required":false,"auth_schemes":[],"authority":"community","base_url":"https://api.minotaursubnet.com/health","capability":"Minotaur API health","description":"Public no-auth GET /health on api.minotaursubnet.com returning application liveness JSON (observed: {\"status\":\"ok\",\"service\":\"app-intents-api\"}). Documented as the production API health probe in the official minotaur_subnet check_validator.sh script and served on the SN112 API host listed in docs/operator/network-reference.md.","eligibility":{"callable":true,"reasons":["not-bittensor-base-layer"],"live_status":"ok"},"fixture":{"artifact_path":"/metagraph/fixtures/sn-112-minotaur-health.json","captured_at":"2026-07-27T10:51:25.372Z","request":{"method":"GET","url":"https://api.minotaursubnet.com/health"},"response":{"content_type":"application/json","status":200}},"fixture_status":{"artifact_path":"/metagraph/fixtures/sn-112-minotaur-health.json","captured_at":"2026-07-27T10:51:25.372Z","reason":null,"status":"available"},"health":{"status":"ok","classification":"live","latency_ms":310,"last_ok":"2026-07-27T23:00:18.289Z","last_checked":"2026-07-27T23:00:18.289Z","stale":false,"observed_by":"live-cron-prober"},"kind":"subnet-api","provider":"minotaur","schema_artifact":null,"schema_source":null,"schema_status":null,"schema_url":null,"snippets":{"curl":"curl -sS 'https://api.minotaursubnet.com/health'","python":"import requests\n\nresp = requests.get(\"https://api.minotaursubnet.com/health\")\nresp.raise_for_status()\nprint(resp.json())","typescript":"const resp = await fetch(\"https://api.minotaursubnet.com/health\");\nif (!resp.ok) throw new Error(`HTTP ${resp.status}`);\nconst data = await resp.json();"},"surface_id":"sn-112-minotaur-health"},{"auth":null,"auth_required":false,"auth_schemes":[],"authority":"community","base_url":"https://raw.githubusercontent.com/subnet112/minotaur_subnet/develop/docs/operator/network-reference.md","capability":"Minotaur operator network reference","description":"Public no-auth Markdown operator network reference (netuid 112, finney subtensor endpoint, production API host, mainnet contract addresses on Base and BT EVM, quorum targets) published in the official subnet112/minotaur_subnet repository at docs/operator/network-reference.md. Documented as the authoritative operator network reference and cited by scripts/check_validator.sh for ValidatorRegistry configuration.","eligibility":{"callable":true,"reasons":["not-bittensor-base-layer"],"live_status":"ok"},"fixture_status":{"artifact_path":null,"captured_at":null,"reason":"non-json response","status":"capture-failed"},"health":{"status":"ok","classification":"live","latency_ms":229,"last_ok":"2026-07-27T23:00:18.289Z","last_checked":"2026-07-27T23:00:18.289Z","stale":false,"observed_by":"live-cron-prober"},"kind":"data-artifact","provider":"minotaur","schema_artifact":null,"schema_source":null,"schema_status":null,"schema_url":null,"snippets":{"curl":"curl -sS 'https://raw.githubusercontent.com/subnet112/minotaur_subnet/develop/docs/operator/network-reference.md'","python":"import requests\n\nresp = requests.get(\"https://raw.githubusercontent.com/subnet112/minotaur_subnet/develop/docs/operator/network-reference.md\")\nresp.raise_for_status()\nprint(resp.json())","typescript":"const resp = await fetch(\"https://raw.githubusercontent.com/subnet112/minotaur_subnet/develop/docs/operator/network-reference.md\");\nif (!resp.ok) throw new Error(`HTTP ${resp.status}`);\nconst data = await resp.json();"},"surface_id":"sn-112-minotaur-network-reference"}],"slug":"sn-112","subnet_type":"application","operational_observed_at":"2026-07-27T23:00:18.289Z","health_source":"live-cron-prober"},"meta":{"artifact_path":"/metagraph/agent-catalog/112.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-27T23:00:18.289Z"}}