{
  "openapi": "3.0.3",
  "info": {
    "title": "GENESIS Agent Tools",
    "version": "1.0.0",
    "description": "Pay-per-call x402 APIs for autonomous agents on Base USDC: API compatibility analysis, bounded HTTP/JSON workflows, URL evidence analysis, crypto price consensus, and agent/MCP readiness checks. No account, no API key.",
    "contact": {
      "name": "GENESIS Agent Tools",
      "email": "chitara.trading@proton.me"
    },
    "x-guidance": "How to use GENESIS Agent Tools (x402 v2, Base USDC):\n\n- No account, no API key. POST to any paid endpoint; you receive HTTP 402 with a PAYMENT-REQUIRED header carrying the x402 v2 challenge. Sign the quoted USDC amount to the canonical Exodus payTo and retry with a PAYMENT-SIGNATURE header to receive the premium result.\n\n- Quick vs Deep: every flagship accepts {tier:\"quick\"|\"deep\", input:{...}}. Quick is the low-cost deterministic result; Deep runs the fuller engine.\n\n- Release Guardian (POST /api/flagships/release-guardian): use to determine whether an API, OpenAPI, GraphQL, schema, SDK, webhook or release change is breaking, risky or compatible. Input {previous, current}. Output SAFE / RISKY / BREAKING / UNKNOWN / UNSUPPORTED with evidence.\n\n- Workflow Runner (POST /api/flagships/workflow-runner): use for bounded HTTP/JSON fetch-transform-validate workflows. Input {steps:[...]}.\n\n- Asset Intelligence (POST /api/flagships/asset-intelligence): use for live crypto price consensus/freshness and supported on-chain contract checks. Input {symbol} or {chain, contract}.\n\n- Research & Evidence (POST /api/flagships/research-evidence): use for URL evidence extraction, claims and contradictions. Input {urls:[...]}.\n\n- Agent Assurance (POST /api/flagships/agent-assurance): use for MCP/agent/tool readiness and reliability/security contract analysis. Input {tool, card, instructions?, text?}.\n\n- Free preflight (POST /api/preflight): classify a resource (MCP / OpenAPI / SDK) and learn which paid check applies, at no cost."
  },
  "servers": [
    {
      "url": "https://genesis-agent-tools.genesisagenttools.workers.dev"
    }
  ],
  "x-agentcash-guidance": {
    "llmsTxtUrl": "https://genesis-agent-tools.genesisagenttools.workers.dev/llms.txt"
  },
  "paths": {
    "/api/preflight": {
      "post": {
        "operationId": "preflight",
        "summary": "GENESIS Compatibility Preflight",
        "description": "Free classifier for API/MCP/SDK contract inputs that routes to exactly one paid compatibility check.",
        "tags": [
          "compatibility",
          "preflight",
          "free"
        ],
        "security": [],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "resource": {
                    "type": "object"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "resource_type": {
                      "type": "string"
                    },
                    "recommended_service": {
                      "type": "string"
                    },
                    "price": {
                      "type": "number"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-price-usdc": 0,
        "x-genesis-network": "Base",
        "x-genesis-asset": "USDC"
      }
    },
    "/api/mcp-schema-drift": {
      "post": {
        "operationId": "mcp_schema_drift",
        "summary": "MCP Schema Drift Gate",
        "description": "MCP schema compatibility check that detects breaking drift between two MCP tool manifests.",
        "tags": [
          "MCP schema compatibility check"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.05"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "previous": {
                    "type": "object"
                  },
                  "current": {
                    "type": "object"
                  }
                },
                "required": [
                  "previous",
                  "current"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "pass": {
                      "type": "boolean"
                    },
                    "breaking_changes": {
                      "type": "array"
                    },
                    "signature": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-price-usdc": 0.05,
        "x-genesis-network": "Base",
        "x-genesis-asset": "USDC"
      }
    },
    "/api/openapi-breaking-change": {
      "post": {
        "operationId": "openapi_breaking_change",
        "summary": "OpenAPI Breaking Change Gate",
        "description": "OpenAPI breaking change detection between two OpenAPI specifications.",
        "tags": [
          "OpenAPI breaking change detection"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.05"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "previous": {
                    "type": "object"
                  },
                  "current": {
                    "type": "object"
                  }
                },
                "required": [
                  "previous",
                  "current"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "pass": {
                      "type": "boolean"
                    },
                    "compatibility_severity": {
                      "type": "string"
                    },
                    "signature": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-price-usdc": 0.05,
        "x-genesis-network": "Base",
        "x-genesis-asset": "USDC"
      }
    },
    "/api/sdk-compatibility": {
      "post": {
        "operationId": "sdk_compatibility",
        "summary": "SDK Compatibility Gate",
        "description": "SDK backwards compatibility validation between two SDK/API export manifests.",
        "tags": [
          "SDK backwards compatibility validation"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.1"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "previous": {
                    "type": "object"
                  },
                  "current": {
                    "type": "object"
                  }
                },
                "required": [
                  "previous",
                  "current"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "pass": {
                      "type": "boolean"
                    },
                    "compatibility_score": {
                      "type": "number"
                    },
                    "signature": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-price-usdc": 0.1,
        "x-genesis-network": "Base",
        "x-genesis-asset": "USDC"
      }
    },
    "/api/compatibility-suite": {
      "post": {
        "operationId": "compatibility_suite",
        "summary": "API Compatibility Suite",
        "description": "Consolidated compatibility report running MCP schema drift + OpenAPI breaking change + SDK compatibility on one before/after artifact.",
        "tags": [
          "compatibility",
          "suite"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.25"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "previous": {
                    "type": "object"
                  },
                  "current": {
                    "type": "object"
                  }
                },
                "required": [
                  "previous",
                  "current"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "pass": {
                      "type": "boolean"
                    },
                    "blocking_findings": {
                      "type": "array"
                    },
                    "signature": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-price-usdc": 0.25,
        "x-genesis-network": "Base",
        "x-genesis-asset": "USDC"
      }
    },
    "/api/batch-compatibility-audit": {
      "post": {
        "operationId": "batch_compatibility_audit",
        "summary": "Batch Compatibility Audit",
        "description": "Runs the compatibility pipeline across up to 10 artifacts with per-item results and a batch summary.",
        "tags": [
          "batch",
          "audit",
          "compatibility"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "1"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "items": {
                    "type": "array",
                    "maxItems": 10,
                    "items": {
                      "type": "object",
                      "properties": {
                        "previous": {
                          "type": "object"
                        },
                        "current": {
                          "type": "object"
                        }
                      },
                      "required": [
                        "previous",
                        "current"
                      ]
                    }
                  }
                },
                "required": [
                  "items"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "summary": {
                      "type": "object"
                    },
                    "results": {
                      "type": "array"
                    },
                    "signature": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-price-usdc": 1,
        "x-genesis-network": "Base",
        "x-genesis-asset": "USDC"
      }
    },
    "/api/release-readiness": {
      "post": {
        "operationId": "release_readiness",
        "summary": "Release Readiness Report",
        "description": "Premium consolidated release-decision report: compatibility state, breaking changes, schema drift, SDK compatibility, blocking findings and release decision evidence.",
        "tags": [
          "release",
          "readiness",
          "report"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "2.5"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "previous": {
                    "type": "object"
                  },
                  "current": {
                    "type": "object"
                  }
                },
                "required": [
                  "previous",
                  "current"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "release_decision": {
                      "type": "string"
                    },
                    "release_decision_evidence": {
                      "type": "object"
                    },
                    "signature": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-price-usdc": 2.5,
        "x-genesis-network": "Base",
        "x-genesis-asset": "USDC"
      }
    },
    "/api/tools/json-schema-drift": {
      "post": {
        "operationId": "tools_json_schema_drift",
        "summary": "JSON Schema Drift Check",
        "description": "Detect breaking drift between two JSON schemas.",
        "tags": [
          "json schema drift",
          "schema diff"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.005"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "previous": {
                    "type": "object"
                  },
                  "current": {
                    "type": "object"
                  }
                },
                "required": [
                  "previous",
                  "current"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "pass": {
                      "type": "boolean"
                    },
                    "breaking_change_count": {
                      "type": "number"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-price-usdc": 0.005,
        "x-genesis-network": "Base",
        "x-genesis-asset": "USDC"
      }
    },
    "/api/tools/graphql-breaking-change": {
      "post": {
        "operationId": "tools_graphql_breaking_change",
        "summary": "GraphQL Breaking Change Check",
        "description": "Detect removed types/fields/enums between GraphQL SDL schemas.",
        "tags": [
          "graphql breaking change"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.01"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "previous": {
                    "type": "string"
                  },
                  "current": {
                    "type": "string"
                  }
                },
                "required": [
                  "previous",
                  "current"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "pass": {
                      "type": "boolean"
                    },
                    "removed_types": {
                      "type": "array"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-price-usdc": 0.01,
        "x-genesis-network": "Base",
        "x-genesis-asset": "USDC"
      }
    },
    "/api/tools/webhook-contract-drift": {
      "post": {
        "operationId": "tools_webhook_contract_drift",
        "summary": "Webhook Contract Drift Check",
        "description": "Validate a webhook payload against a JSON contract.",
        "tags": [
          "webhook validation",
          "payload contract"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.01"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "payload": {
                    "type": "object"
                  },
                  "contract": {
                    "type": "object"
                  }
                },
                "required": [
                  "payload",
                  "contract"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "valid": {
                      "type": "boolean"
                    },
                    "errors": {
                      "type": "array"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-price-usdc": 0.01,
        "x-genesis-network": "Base",
        "x-genesis-asset": "USDC"
      }
    },
    "/api/tools/api-response-contract-guard": {
      "post": {
        "operationId": "tools_api_response_contract_guard",
        "summary": "API Response Contract Guard",
        "description": "Guard an API response body against a declared schema.",
        "tags": [
          "api response validation",
          "contract guard"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.005"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "response": {
                    "type": "object"
                  },
                  "schema": {
                    "type": "object"
                  }
                },
                "required": [
                  "response",
                  "schema"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "valid": {
                      "type": "boolean"
                    },
                    "errors": {
                      "type": "array"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-price-usdc": 0.005,
        "x-genesis-network": "Base",
        "x-genesis-asset": "USDC"
      }
    },
    "/api/tools/tool-contract-lint": {
      "post": {
        "operationId": "tools_tool_contract_lint",
        "summary": "Tool Contract Lint",
        "description": "Lint an agent/MCP tool definition for missing name and schemas.",
        "tags": [
          "tool schema lint",
          "mcp tool"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.01"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "tool": {
                    "type": "object"
                  }
                },
                "required": [
                  "tool"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "valid": {
                      "type": "boolean"
                    },
                    "findings": {
                      "type": "array"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-price-usdc": 0.01,
        "x-genesis-network": "Base",
        "x-genesis-asset": "USDC"
      }
    },
    "/api/tools/api-changelog-risk": {
      "post": {
        "operationId": "tools_api_changelog_risk",
        "summary": "API Changelog Risk Scanner",
        "description": "Scan an API changelog for breaking-change signals.",
        "tags": [
          "api changelog",
          "release risk"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.01"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "changelog": {
                    "type": "string"
                  }
                },
                "required": [
                  "changelog"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "risk": {
                      "type": "string"
                    },
                    "breaking_signals_found": {
                      "type": "array"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-price-usdc": 0.01,
        "x-genesis-network": "Base",
        "x-genesis-asset": "USDC"
      }
    },
    "/api/tools/agent-instruction-conflict": {
      "post": {
        "operationId": "tools_agent_instruction_conflict",
        "summary": "Agent Instruction Conflict Linter",
        "description": "Detect contradictory agent directives.",
        "tags": [
          "agent instruction conflict"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.01"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "instructions": {
                    "type": "array",
                    "items": {
                      "type": "object"
                    }
                  }
                },
                "required": [
                  "instructions"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "conflict_count": {
                      "type": "number"
                    },
                    "conflicts": {
                      "type": "array"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-price-usdc": 0.01,
        "x-genesis-network": "Base",
        "x-genesis-asset": "USDC"
      }
    },
    "/api/tools/package-integrity-verify": {
      "post": {
        "operationId": "tools_package_integrity_verify",
        "summary": "Package Integrity Verifier",
        "description": "Verify a file manifest against a declared archive digest.",
        "tags": [
          "package integrity",
          "checksum"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.04"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "files": {
                    "type": "array",
                    "items": {
                      "type": "object"
                    }
                  },
                  "archive_sha256": {
                    "type": "string"
                  }
                },
                "required": [
                  "files"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "match": {
                      "type": "boolean"
                    },
                    "computed_digest": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-price-usdc": 0.04,
        "x-genesis-network": "Base",
        "x-genesis-asset": "USDC"
      }
    },
    "/api/tools/numeric-truth-guard": {
      "post": {
        "operationId": "tools_numeric_truth_guard",
        "summary": "AI Numeric Truth Guard",
        "description": "Validate a numeric claim against bounds and units.",
        "tags": [
          "numeric validation",
          "data integrity"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.04"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "value": {
                    "type": "number"
                  },
                  "min": {
                    "type": "number"
                  },
                  "max": {
                    "type": "number"
                  },
                  "unit": {
                    "type": "string"
                  }
                },
                "required": [
                  "value"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "valid": {
                      "type": "boolean"
                    },
                    "findings": {
                      "type": "array"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-price-usdc": 0.04,
        "x-genesis-network": "Base",
        "x-genesis-asset": "USDC"
      }
    },
    "/api/tools/prediction-calibration": {
      "post": {
        "operationId": "tools_prediction_calibration",
        "summary": "Prediction Calibration Check",
        "description": "Compute Brier score and calibration bucket.",
        "tags": [
          "prediction calibration",
          "brier score"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.04"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "pairs": {
                    "type": "array",
                    "items": {
                      "type": "object"
                    }
                  }
                },
                "required": [
                  "pairs"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "brier_score": {
                      "type": "number"
                    },
                    "calibration": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-price-usdc": 0.04,
        "x-genesis-network": "Base",
        "x-genesis-asset": "USDC"
      }
    },
    "/api/tools/data-freshness-check": {
      "post": {
        "operationId": "tools_data_freshness_check",
        "summary": "Market Data Freshness Check",
        "description": "Check whether data is fresh relative to a threshold.",
        "tags": [
          "data freshness",
          "staleness"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.02"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "timestamp": {
                    "type": "string"
                  },
                  "threshold_seconds": {
                    "type": "number"
                  }
                },
                "required": [
                  "timestamp"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "fresh": {
                      "type": "boolean"
                    },
                    "age_seconds": {
                      "type": "number"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-price-usdc": 0.02,
        "x-genesis-network": "Base",
        "x-genesis-asset": "USDC"
      }
    },
    "/api/tools/point-in-time-leakage": {
      "post": {
        "operationId": "tools_point_in_time_leakage",
        "summary": "Point-in-Time Leakage Detector",
        "description": "Detect future-dated observations in a historical dataset.",
        "tags": [
          "point-in-time leakage",
          "lookahead bias"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.04"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "rows": {
                    "type": "array",
                    "items": {
                      "type": "object"
                    }
                  },
                  "as_of": {
                    "type": "string"
                  }
                },
                "required": [
                  "rows",
                  "as_of"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "leakage_count": {
                      "type": "number"
                    },
                    "leaks": {
                      "type": "array"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-price-usdc": 0.04,
        "x-genesis-network": "Base",
        "x-genesis-asset": "USDC"
      }
    },
    "/api/tools/postman-route-drift": {
      "post": {
        "operationId": "tools_postman_route_drift",
        "summary": "Postman Route Drift Gate",
        "description": "Detect removed routes between two Postman collections.",
        "tags": [
          "postman route drift",
          "api route"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.005"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "previous": {
                    "type": "object"
                  },
                  "current": {
                    "type": "object"
                  }
                },
                "required": [
                  "previous",
                  "current"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "removed_routes": {
                      "type": "array"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-price-usdc": 0.005,
        "x-genesis-network": "Base",
        "x-genesis-asset": "USDC"
      }
    },
    "/api/tools/secret-leak-scan": {
      "post": {
        "operationId": "tools_secret_leak_scan",
        "summary": "Secret Leak Scanner",
        "description": "Scan text for leaked private keys, API keys and JWTs.",
        "tags": [
          "secret leak",
          "security scan",
          "credentials"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.02"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "text": {
                    "type": "string"
                  }
                },
                "required": [
                  "text"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "secret_count": {
                      "type": "number"
                    },
                    "hits": {
                      "type": "array"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-price-usdc": 0.02,
        "x-genesis-network": "Base",
        "x-genesis-asset": "USDC"
      }
    },
    "/api/tools/webhook-signature-verify": {
      "post": {
        "operationId": "tools_webhook_signature_verify",
        "summary": "Webhook Signature Verifier",
        "description": "Verify an HMAC-SHA256 webhook signature (constant-time).",
        "tags": [
          "webhook signature",
          "hmac"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.01"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "body": {
                    "type": "string"
                  },
                  "secret": {
                    "type": "string"
                  },
                  "signature": {
                    "type": "string"
                  }
                },
                "required": [
                  "body",
                  "secret",
                  "signature"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "valid": {
                      "type": "boolean"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-price-usdc": 0.01,
        "x-genesis-network": "Base",
        "x-genesis-asset": "USDC"
      }
    },
    "/api/tools/workflow-integrity": {
      "post": {
        "operationId": "tools_workflow_integrity",
        "summary": "Workflow Integrity Checker",
        "description": "Verify a hash chain of workflow steps.",
        "tags": [
          "workflow integrity",
          "hash chain"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.04"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "steps": {
                    "type": "array",
                    "items": {
                      "type": "object"
                    }
                  }
                },
                "required": [
                  "steps"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "chain_break_count": {
                      "type": "number"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-price-usdc": 0.04,
        "x-genesis-network": "Base",
        "x-genesis-asset": "USDC"
      }
    },
    "/api/tools/sdk-export-drift": {
      "post": {
        "operationId": "tools_sdk_export_drift",
        "summary": "SDK Export Drift Check",
        "description": "Detect removed exports between two SDK export lists.",
        "tags": [
          "sdk compatibility",
          "export drift"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.01"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "previous": {
                    "type": "object"
                  },
                  "current": {
                    "type": "object"
                  }
                },
                "required": [
                  "previous",
                  "current"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "removed_exports": {
                      "type": "array"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-price-usdc": 0.01,
        "x-genesis-network": "Base",
        "x-genesis-asset": "USDC"
      }
    },
    "/api/tools/agent-card-validate": {
      "post": {
        "operationId": "tools_agent_card_validate",
        "summary": "Agent Card Validator",
        "description": "Validate required fields of an A2A agent card.",
        "tags": [
          "agent card",
          "a2a",
          "validation"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.01"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "card": {
                    "type": "object"
                  }
                },
                "required": [
                  "card"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "valid": {
                      "type": "boolean"
                    },
                    "findings": {
                      "type": "array"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-price-usdc": 0.01,
        "x-genesis-network": "Base",
        "x-genesis-asset": "USDC"
      }
    },
    "/api/tools/json-schema-infer": {
      "post": {
        "operationId": "tools_json_schema_infer",
        "summary": "JSON Schema Infer",
        "description": "Infer a JSON schema from an instance.",
        "tags": [
          "json schema infer",
          "schema generation"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.005"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "instance": {
                    "type": "object"
                  }
                },
                "required": [
                  "instance"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "schema": {
                      "type": "object"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-price-usdc": 0.005,
        "x-genesis-network": "Base",
        "x-genesis-asset": "USDC"
      }
    },
    "/api/tools/content-hash-verify": {
      "post": {
        "operationId": "tools_content_hash_verify",
        "summary": "Content Hash Verifier",
        "description": "Verify a content string against a declared SHA-256.",
        "tags": [
          "content hash",
          "sha256"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.01"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "content": {
                    "type": "string"
                  },
                  "sha256": {
                    "type": "string"
                  }
                },
                "required": [
                  "content"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "match": {
                      "type": "boolean"
                    },
                    "computed": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-price-usdc": 0.01,
        "x-genesis-network": "Base",
        "x-genesis-asset": "USDC"
      }
    },
    "/api/tools/semver-check": {
      "post": {
        "operationId": "tools_semver_check",
        "summary": "Semantic Version Comparator",
        "description": "Compare two semantic versions.",
        "tags": [
          "semver",
          "version comparison"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.01"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "a": {
                    "type": "string"
                  },
                  "b": {
                    "type": "string"
                  }
                },
                "required": [
                  "a",
                  "b"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "comparison": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-price-usdc": 0.01,
        "x-genesis-network": "Base",
        "x-genesis-asset": "USDC"
      }
    },
    "/api/tools/dependency-license-check": {
      "post": {
        "operationId": "tools_dependency_license_check",
        "summary": "Dependency License Check",
        "description": "Check a package.json for a declared license.",
        "tags": [
          "license check",
          "dependency"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.02"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "package": {
                    "type": "object"
                  }
                },
                "required": [
                  "package"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "findings": {
                      "type": "array"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-price-usdc": 0.02,
        "x-genesis-network": "Base",
        "x-genesis-asset": "USDC"
      }
    },
    "/api/tools/openapi-endpoint-search": {
      "post": {
        "operationId": "tools_openapi_endpoint_search",
        "summary": "OpenAPI Endpoint Search",
        "description": "Search OpenAPI paths for a matching endpoint.",
        "tags": [
          "openapi search",
          "endpoint"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.005"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "spec": {
                    "type": "object"
                  },
                  "query": {
                    "type": "string"
                  }
                },
                "required": [
                  "spec",
                  "query"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "matches": {
                      "type": "array"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-price-usdc": 0.005,
        "x-genesis-network": "Base",
        "x-genesis-asset": "USDC"
      }
    },
    "/api/tools/url-structure-check": {
      "post": {
        "operationId": "tools_url_structure_check",
        "summary": "URL Structure Check",
        "description": "Validate URL syntax and components.",
        "tags": [
          "url validation",
          "url structure"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.005"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "url": {
                    "type": "string"
                  }
                },
                "required": [
                  "url"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "valid": {
                      "type": "boolean"
                    },
                    "findings": {
                      "type": "array"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-price-usdc": 0.005,
        "x-genesis-network": "Base",
        "x-genesis-asset": "USDC"
      }
    },
    "/api/flagships/asset-intelligence": {
      "post": {
        "operationId": "flagship_asset_intelligence",
        "summary": "Verify a crypto asset's live multi-source price, freshness and on-chain owner before a trade or quote",
        "description": "GENESIS Asset Intelligence — Verify a crypto asset's live multi-source price, freshness, and on-chain owner before a trade or quote.",
        "tags": [
          "flagship",
          "asset-intelligence",
          "crypto price",
          "multi-source price",
          "contract owner"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "dynamic",
            "currency": "USD",
            "min": "0.005",
            "max": "0.025"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "tier"
                ],
                "properties": {
                  "tier": {
                    "type": "string",
                    "enum": [
                      "quick",
                      "deep"
                    ],
                    "default": "quick"
                  },
                  "input": {
                    "type": "object",
                    "description": "Product-specific input; see the product landing page."
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "paid": {
                      "type": "boolean"
                    },
                    "flagship": {
                      "type": "string"
                    },
                    "tier": {
                      "type": "string"
                    },
                    "amount": {
                      "type": "number"
                    },
                    "asset": {
                      "type": "string"
                    },
                    "network": {
                      "type": "string"
                    },
                    "payer": {
                      "type": "string"
                    },
                    "settlement_tx_hash": {
                      "type": "string"
                    },
                    "delivery_state": {
                      "type": "string"
                    },
                    "result": {
                      "type": "object"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-pricing-usdc": {
          "quick": 0.005,
          "deep": 0.025
        },
        "x-genesis-network": "eip155:8453",
        "x-genesis-asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "x-genesis-product-id": "GEN-FLAG-001",
        "x-genesis-canonical-slug": "asset-intelligence"
      }
    },
    "/api/flagships/asset-intelligence/facilitator/dexter": {
      "post": {
        "operationId": "flagship_asset_intelligence_dexter",
        "summary": "GENESIS Asset Intelligence (Dexter no-account facilitator)",
        "description": "GENESIS Asset Intelligence — Verify a crypto asset's live multi-source price, freshness, and on-chain owner before a trade or quote.",
        "tags": [
          "flagship",
          "asset-intelligence",
          "crypto price",
          "multi-source price",
          "contract owner"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "dynamic",
            "currency": "USD",
            "min": "0.005",
            "max": "0.025"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "tier"
                ],
                "properties": {
                  "tier": {
                    "type": "string",
                    "enum": [
                      "quick",
                      "deep"
                    ],
                    "default": "quick"
                  },
                  "input": {
                    "type": "object",
                    "description": "Product-specific input; see the product landing page."
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "paid": {
                      "type": "boolean"
                    },
                    "flagship": {
                      "type": "string"
                    },
                    "tier": {
                      "type": "string"
                    },
                    "amount": {
                      "type": "number"
                    },
                    "asset": {
                      "type": "string"
                    },
                    "network": {
                      "type": "string"
                    },
                    "payer": {
                      "type": "string"
                    },
                    "settlement_tx_hash": {
                      "type": "string"
                    },
                    "delivery_state": {
                      "type": "string"
                    },
                    "result": {
                      "type": "object"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-pricing-usdc": {
          "quick": 0.005,
          "deep": 0.025
        },
        "x-genesis-network": "eip155:8453",
        "x-genesis-asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "x-genesis-product-id": "GEN-FLAG-001",
        "x-genesis-canonical-slug": "asset-intelligence",
        "x-genesis-facilitator": "dexter"
      }
    },
    "/api/flagships/verify-crypto-price-consensus": {
      "post": {
        "operationId": "flagship_verify_crypto_price_consensus",
        "summary": "Verify a crypto asset's live multi-source price, freshness and on-chain owner before a trade or quote",
        "description": "GENESIS Asset Intelligence — Verify a crypto asset's live multi-source price, freshness, and on-chain owner before a trade or quote.",
        "tags": [
          "flagship",
          "asset-intelligence",
          "crypto price",
          "multi-source price",
          "contract owner"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "dynamic",
            "currency": "USD",
            "min": "0.005",
            "max": "0.025"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "tier"
                ],
                "properties": {
                  "tier": {
                    "type": "string",
                    "enum": [
                      "quick",
                      "deep"
                    ],
                    "default": "quick"
                  },
                  "input": {
                    "type": "object",
                    "description": "Product-specific input; see the product landing page."
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "paid": {
                      "type": "boolean"
                    },
                    "flagship": {
                      "type": "string"
                    },
                    "tier": {
                      "type": "string"
                    },
                    "amount": {
                      "type": "number"
                    },
                    "asset": {
                      "type": "string"
                    },
                    "network": {
                      "type": "string"
                    },
                    "payer": {
                      "type": "string"
                    },
                    "settlement_tx_hash": {
                      "type": "string"
                    },
                    "delivery_state": {
                      "type": "string"
                    },
                    "result": {
                      "type": "object"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-pricing-usdc": {
          "quick": 0.005,
          "deep": 0.025
        },
        "x-genesis-network": "eip155:8453",
        "x-genesis-asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "x-genesis-product-id": "GEN-FLAG-001",
        "x-genesis-canonical-slug": "asset-intelligence"
      }
    },
    "/api/flagships/verify-crypto-price-consensus/facilitator/dexter": {
      "post": {
        "operationId": "flagship_verify_crypto_price_consensus_dexter",
        "summary": "Verify Crypto Price Consensus (Dexter no-account facilitator)",
        "description": "GENESIS Asset Intelligence — Verify a crypto asset's live multi-source price, freshness, and on-chain owner before a trade or quote.",
        "tags": [
          "flagship",
          "asset-intelligence",
          "crypto price",
          "multi-source price",
          "contract owner"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "dynamic",
            "currency": "USD",
            "min": "0.005",
            "max": "0.025"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "tier"
                ],
                "properties": {
                  "tier": {
                    "type": "string",
                    "enum": [
                      "quick",
                      "deep"
                    ],
                    "default": "quick"
                  },
                  "input": {
                    "type": "object",
                    "description": "Product-specific input; see the product landing page."
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "paid": {
                      "type": "boolean"
                    },
                    "flagship": {
                      "type": "string"
                    },
                    "tier": {
                      "type": "string"
                    },
                    "amount": {
                      "type": "number"
                    },
                    "asset": {
                      "type": "string"
                    },
                    "network": {
                      "type": "string"
                    },
                    "payer": {
                      "type": "string"
                    },
                    "settlement_tx_hash": {
                      "type": "string"
                    },
                    "delivery_state": {
                      "type": "string"
                    },
                    "result": {
                      "type": "object"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-pricing-usdc": {
          "quick": 0.005,
          "deep": 0.025
        },
        "x-genesis-network": "eip155:8453",
        "x-genesis-asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "x-genesis-product-id": "GEN-FLAG-001",
        "x-genesis-canonical-slug": "asset-intelligence",
        "x-genesis-facilitator": "dexter"
      }
    },
    "/api/flagships/research-evidence": {
      "post": {
        "operationId": "flagship_research_evidence",
        "summary": "Extract cited claims and contradictions from supplied URLs into a bounded evidence synthesis",
        "description": "GENESIS Research & Evidence — Extract cited claims and contradictions from supplied URLs into a bounded evidence synthesis.",
        "tags": [
          "flagship",
          "research-evidence",
          "url analysis",
          "claim extraction",
          "contradiction detection"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "dynamic",
            "currency": "USD",
            "min": "0.005",
            "max": "0.04"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "tier"
                ],
                "properties": {
                  "tier": {
                    "type": "string",
                    "enum": [
                      "quick",
                      "deep"
                    ],
                    "default": "quick"
                  },
                  "input": {
                    "type": "object",
                    "description": "Product-specific input; see the product landing page."
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "paid": {
                      "type": "boolean"
                    },
                    "flagship": {
                      "type": "string"
                    },
                    "tier": {
                      "type": "string"
                    },
                    "amount": {
                      "type": "number"
                    },
                    "asset": {
                      "type": "string"
                    },
                    "network": {
                      "type": "string"
                    },
                    "payer": {
                      "type": "string"
                    },
                    "settlement_tx_hash": {
                      "type": "string"
                    },
                    "delivery_state": {
                      "type": "string"
                    },
                    "result": {
                      "type": "object"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-pricing-usdc": {
          "quick": 0.005,
          "deep": 0.04
        },
        "x-genesis-network": "eip155:8453",
        "x-genesis-asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "x-genesis-product-id": "GEN-FLAG-002",
        "x-genesis-canonical-slug": "research-evidence"
      }
    },
    "/api/flagships/research-evidence/facilitator/dexter": {
      "post": {
        "operationId": "flagship_research_evidence_dexter",
        "summary": "GENESIS Research & Evidence (Dexter no-account facilitator)",
        "description": "GENESIS Research & Evidence — Extract cited claims and contradictions from supplied URLs into a bounded evidence synthesis.",
        "tags": [
          "flagship",
          "research-evidence",
          "url analysis",
          "claim extraction",
          "contradiction detection"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "dynamic",
            "currency": "USD",
            "min": "0.005",
            "max": "0.04"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "tier"
                ],
                "properties": {
                  "tier": {
                    "type": "string",
                    "enum": [
                      "quick",
                      "deep"
                    ],
                    "default": "quick"
                  },
                  "input": {
                    "type": "object",
                    "description": "Product-specific input; see the product landing page."
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "paid": {
                      "type": "boolean"
                    },
                    "flagship": {
                      "type": "string"
                    },
                    "tier": {
                      "type": "string"
                    },
                    "amount": {
                      "type": "number"
                    },
                    "asset": {
                      "type": "string"
                    },
                    "network": {
                      "type": "string"
                    },
                    "payer": {
                      "type": "string"
                    },
                    "settlement_tx_hash": {
                      "type": "string"
                    },
                    "delivery_state": {
                      "type": "string"
                    },
                    "result": {
                      "type": "object"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-pricing-usdc": {
          "quick": 0.005,
          "deep": 0.04
        },
        "x-genesis-network": "eip155:8453",
        "x-genesis-asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "x-genesis-product-id": "GEN-FLAG-002",
        "x-genesis-canonical-slug": "research-evidence",
        "x-genesis-facilitator": "dexter"
      }
    },
    "/api/flagships/analyze-url-evidence": {
      "post": {
        "operationId": "flagship_analyze_url_evidence",
        "summary": "Extract cited claims and contradictions from supplied URLs into a bounded evidence synthesis",
        "description": "GENESIS Research & Evidence — Extract cited claims and contradictions from supplied URLs into a bounded evidence synthesis.",
        "tags": [
          "flagship",
          "research-evidence",
          "url analysis",
          "claim extraction",
          "contradiction detection"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "dynamic",
            "currency": "USD",
            "min": "0.005",
            "max": "0.04"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "tier"
                ],
                "properties": {
                  "tier": {
                    "type": "string",
                    "enum": [
                      "quick",
                      "deep"
                    ],
                    "default": "quick"
                  },
                  "input": {
                    "type": "object",
                    "description": "Product-specific input; see the product landing page."
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "paid": {
                      "type": "boolean"
                    },
                    "flagship": {
                      "type": "string"
                    },
                    "tier": {
                      "type": "string"
                    },
                    "amount": {
                      "type": "number"
                    },
                    "asset": {
                      "type": "string"
                    },
                    "network": {
                      "type": "string"
                    },
                    "payer": {
                      "type": "string"
                    },
                    "settlement_tx_hash": {
                      "type": "string"
                    },
                    "delivery_state": {
                      "type": "string"
                    },
                    "result": {
                      "type": "object"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-pricing-usdc": {
          "quick": 0.005,
          "deep": 0.04
        },
        "x-genesis-network": "eip155:8453",
        "x-genesis-asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "x-genesis-product-id": "GEN-FLAG-002",
        "x-genesis-canonical-slug": "research-evidence"
      }
    },
    "/api/flagships/analyze-url-evidence/facilitator/dexter": {
      "post": {
        "operationId": "flagship_analyze_url_evidence_dexter",
        "summary": "Analyze URL Evidence (Dexter no-account facilitator)",
        "description": "GENESIS Research & Evidence — Extract cited claims and contradictions from supplied URLs into a bounded evidence synthesis.",
        "tags": [
          "flagship",
          "research-evidence",
          "url analysis",
          "claim extraction",
          "contradiction detection"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "dynamic",
            "currency": "USD",
            "min": "0.005",
            "max": "0.04"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "tier"
                ],
                "properties": {
                  "tier": {
                    "type": "string",
                    "enum": [
                      "quick",
                      "deep"
                    ],
                    "default": "quick"
                  },
                  "input": {
                    "type": "object",
                    "description": "Product-specific input; see the product landing page."
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "paid": {
                      "type": "boolean"
                    },
                    "flagship": {
                      "type": "string"
                    },
                    "tier": {
                      "type": "string"
                    },
                    "amount": {
                      "type": "number"
                    },
                    "asset": {
                      "type": "string"
                    },
                    "network": {
                      "type": "string"
                    },
                    "payer": {
                      "type": "string"
                    },
                    "settlement_tx_hash": {
                      "type": "string"
                    },
                    "delivery_state": {
                      "type": "string"
                    },
                    "result": {
                      "type": "object"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-pricing-usdc": {
          "quick": 0.005,
          "deep": 0.04
        },
        "x-genesis-network": "eip155:8453",
        "x-genesis-asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "x-genesis-product-id": "GEN-FLAG-002",
        "x-genesis-canonical-slug": "research-evidence",
        "x-genesis-facilitator": "dexter"
      }
    },
    "/api/flagships/workflow-runner": {
      "post": {
        "operationId": "flagship_workflow_runner",
        "summary": "Run a bounded HTTP/JSON workflow — fetch, transform, validate and compare — with a deterministic trace and durable checkpoints",
        "description": "GENESIS Workflow Runner — Validate or run a bounded HTTP/JSON workflow with a deterministic trace and durable checkpoints.",
        "tags": [
          "flagship",
          "workflow-runner",
          "workflow automation",
          "http workflow",
          "json validation"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "dynamic",
            "currency": "USD",
            "min": "0.005",
            "max": "0.035"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "tier"
                ],
                "properties": {
                  "tier": {
                    "type": "string",
                    "enum": [
                      "quick",
                      "deep"
                    ],
                    "default": "quick"
                  },
                  "input": {
                    "type": "object",
                    "description": "Product-specific input; see the product landing page."
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "paid": {
                      "type": "boolean"
                    },
                    "flagship": {
                      "type": "string"
                    },
                    "tier": {
                      "type": "string"
                    },
                    "amount": {
                      "type": "number"
                    },
                    "asset": {
                      "type": "string"
                    },
                    "network": {
                      "type": "string"
                    },
                    "payer": {
                      "type": "string"
                    },
                    "settlement_tx_hash": {
                      "type": "string"
                    },
                    "delivery_state": {
                      "type": "string"
                    },
                    "result": {
                      "type": "object"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-pricing-usdc": {
          "quick": 0.005,
          "deep": 0.035
        },
        "x-genesis-network": "eip155:8453",
        "x-genesis-asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "x-genesis-product-id": "GEN-FLAG-003",
        "x-genesis-canonical-slug": "workflow-runner"
      }
    },
    "/api/flagships/workflow-runner/facilitator/dexter": {
      "post": {
        "operationId": "flagship_workflow_runner_dexter",
        "summary": "GENESIS Workflow Runner (Dexter no-account facilitator)",
        "description": "GENESIS Workflow Runner — Validate or run a bounded HTTP/JSON workflow with a deterministic trace and durable checkpoints.",
        "tags": [
          "flagship",
          "workflow-runner",
          "workflow automation",
          "http workflow",
          "json validation"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "dynamic",
            "currency": "USD",
            "min": "0.005",
            "max": "0.035"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "tier"
                ],
                "properties": {
                  "tier": {
                    "type": "string",
                    "enum": [
                      "quick",
                      "deep"
                    ],
                    "default": "quick"
                  },
                  "input": {
                    "type": "object",
                    "description": "Product-specific input; see the product landing page."
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "paid": {
                      "type": "boolean"
                    },
                    "flagship": {
                      "type": "string"
                    },
                    "tier": {
                      "type": "string"
                    },
                    "amount": {
                      "type": "number"
                    },
                    "asset": {
                      "type": "string"
                    },
                    "network": {
                      "type": "string"
                    },
                    "payer": {
                      "type": "string"
                    },
                    "settlement_tx_hash": {
                      "type": "string"
                    },
                    "delivery_state": {
                      "type": "string"
                    },
                    "result": {
                      "type": "object"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-pricing-usdc": {
          "quick": 0.005,
          "deep": 0.035
        },
        "x-genesis-network": "eip155:8453",
        "x-genesis-asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "x-genesis-product-id": "GEN-FLAG-003",
        "x-genesis-canonical-slug": "workflow-runner",
        "x-genesis-facilitator": "dexter"
      }
    },
    "/api/flagships/run-http-json-workflow": {
      "post": {
        "operationId": "flagship_run_http_json_workflow",
        "summary": "Run a bounded HTTP/JSON workflow — fetch, transform, validate and compare — with a deterministic trace and durable checkpoints",
        "description": "GENESIS Workflow Runner — Validate or run a bounded HTTP/JSON workflow with a deterministic trace and durable checkpoints.",
        "tags": [
          "flagship",
          "workflow-runner",
          "workflow automation",
          "http workflow",
          "json validation"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "dynamic",
            "currency": "USD",
            "min": "0.005",
            "max": "0.035"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "tier"
                ],
                "properties": {
                  "tier": {
                    "type": "string",
                    "enum": [
                      "quick",
                      "deep"
                    ],
                    "default": "quick"
                  },
                  "input": {
                    "type": "object",
                    "description": "Product-specific input; see the product landing page."
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "paid": {
                      "type": "boolean"
                    },
                    "flagship": {
                      "type": "string"
                    },
                    "tier": {
                      "type": "string"
                    },
                    "amount": {
                      "type": "number"
                    },
                    "asset": {
                      "type": "string"
                    },
                    "network": {
                      "type": "string"
                    },
                    "payer": {
                      "type": "string"
                    },
                    "settlement_tx_hash": {
                      "type": "string"
                    },
                    "delivery_state": {
                      "type": "string"
                    },
                    "result": {
                      "type": "object"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-pricing-usdc": {
          "quick": 0.005,
          "deep": 0.035
        },
        "x-genesis-network": "eip155:8453",
        "x-genesis-asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "x-genesis-product-id": "GEN-FLAG-003",
        "x-genesis-canonical-slug": "workflow-runner"
      }
    },
    "/api/flagships/run-http-json-workflow/facilitator/dexter": {
      "post": {
        "operationId": "flagship_run_http_json_workflow_dexter",
        "summary": "Run HTTP/JSON Workflow (Dexter no-account facilitator)",
        "description": "GENESIS Workflow Runner — Validate or run a bounded HTTP/JSON workflow with a deterministic trace and durable checkpoints.",
        "tags": [
          "flagship",
          "workflow-runner",
          "workflow automation",
          "http workflow",
          "json validation"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "dynamic",
            "currency": "USD",
            "min": "0.005",
            "max": "0.035"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "tier"
                ],
                "properties": {
                  "tier": {
                    "type": "string",
                    "enum": [
                      "quick",
                      "deep"
                    ],
                    "default": "quick"
                  },
                  "input": {
                    "type": "object",
                    "description": "Product-specific input; see the product landing page."
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "paid": {
                      "type": "boolean"
                    },
                    "flagship": {
                      "type": "string"
                    },
                    "tier": {
                      "type": "string"
                    },
                    "amount": {
                      "type": "number"
                    },
                    "asset": {
                      "type": "string"
                    },
                    "network": {
                      "type": "string"
                    },
                    "payer": {
                      "type": "string"
                    },
                    "settlement_tx_hash": {
                      "type": "string"
                    },
                    "delivery_state": {
                      "type": "string"
                    },
                    "result": {
                      "type": "object"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-pricing-usdc": {
          "quick": 0.005,
          "deep": 0.035
        },
        "x-genesis-network": "eip155:8453",
        "x-genesis-asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "x-genesis-product-id": "GEN-FLAG-003",
        "x-genesis-canonical-slug": "workflow-runner",
        "x-genesis-facilitator": "dexter"
      }
    },
    "/api/flagships/release-guardian": {
      "post": {
        "operationId": "flagship_release_guardian",
        "summary": "Detect breaking API, OpenAPI, GraphQL and schema changes between two versions and flag consumer-breaking compatibility risk for release",
        "description": "GENESIS Release Guardian — Detect breaking API/OpenAPI/schema changes and release risk between two versions.",
        "tags": [
          "flagship",
          "release-guardian",
          "breaking change detection",
          "openapi compatibility",
          "schema drift"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "dynamic",
            "currency": "USD",
            "min": "0.005",
            "max": "0.019"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "tier"
                ],
                "properties": {
                  "tier": {
                    "type": "string",
                    "enum": [
                      "quick",
                      "deep"
                    ],
                    "default": "quick"
                  },
                  "input": {
                    "type": "object",
                    "description": "Product-specific input; see the product landing page."
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "paid": {
                      "type": "boolean"
                    },
                    "flagship": {
                      "type": "string"
                    },
                    "tier": {
                      "type": "string"
                    },
                    "amount": {
                      "type": "number"
                    },
                    "asset": {
                      "type": "string"
                    },
                    "network": {
                      "type": "string"
                    },
                    "payer": {
                      "type": "string"
                    },
                    "settlement_tx_hash": {
                      "type": "string"
                    },
                    "delivery_state": {
                      "type": "string"
                    },
                    "result": {
                      "type": "object"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-pricing-usdc": {
          "quick": 0.005,
          "deep": 0.019
        },
        "x-genesis-network": "eip155:8453",
        "x-genesis-asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "x-genesis-product-id": "GEN-FLAG-004",
        "x-genesis-canonical-slug": "release-guardian"
      }
    },
    "/api/flagships/release-guardian/facilitator/dexter": {
      "post": {
        "operationId": "flagship_release_guardian_dexter",
        "summary": "GENESIS Release Guardian (Dexter no-account facilitator)",
        "description": "GENESIS Release Guardian — Detect breaking API/OpenAPI/schema changes and release risk between two versions.",
        "tags": [
          "flagship",
          "release-guardian",
          "breaking change detection",
          "openapi compatibility",
          "schema drift"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "dynamic",
            "currency": "USD",
            "min": "0.005",
            "max": "0.019"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "tier"
                ],
                "properties": {
                  "tier": {
                    "type": "string",
                    "enum": [
                      "quick",
                      "deep"
                    ],
                    "default": "quick"
                  },
                  "input": {
                    "type": "object",
                    "description": "Product-specific input; see the product landing page."
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "paid": {
                      "type": "boolean"
                    },
                    "flagship": {
                      "type": "string"
                    },
                    "tier": {
                      "type": "string"
                    },
                    "amount": {
                      "type": "number"
                    },
                    "asset": {
                      "type": "string"
                    },
                    "network": {
                      "type": "string"
                    },
                    "payer": {
                      "type": "string"
                    },
                    "settlement_tx_hash": {
                      "type": "string"
                    },
                    "delivery_state": {
                      "type": "string"
                    },
                    "result": {
                      "type": "object"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-pricing-usdc": {
          "quick": 0.005,
          "deep": 0.019
        },
        "x-genesis-network": "eip155:8453",
        "x-genesis-asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "x-genesis-product-id": "GEN-FLAG-004",
        "x-genesis-canonical-slug": "release-guardian",
        "x-genesis-facilitator": "dexter"
      }
    },
    "/api/flagships/check-api-breaking-change": {
      "post": {
        "operationId": "flagship_check_api_breaking_change",
        "summary": "Detect breaking API, OpenAPI, GraphQL and schema changes between two versions and flag consumer-breaking compatibility risk for release",
        "description": "GENESIS Release Guardian — Detect breaking API/OpenAPI/schema changes and release risk between two versions.",
        "tags": [
          "flagship",
          "release-guardian",
          "breaking change detection",
          "openapi compatibility",
          "schema drift"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "dynamic",
            "currency": "USD",
            "min": "0.005",
            "max": "0.019"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "tier"
                ],
                "properties": {
                  "tier": {
                    "type": "string",
                    "enum": [
                      "quick",
                      "deep"
                    ],
                    "default": "quick"
                  },
                  "input": {
                    "type": "object",
                    "description": "Product-specific input; see the product landing page."
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "paid": {
                      "type": "boolean"
                    },
                    "flagship": {
                      "type": "string"
                    },
                    "tier": {
                      "type": "string"
                    },
                    "amount": {
                      "type": "number"
                    },
                    "asset": {
                      "type": "string"
                    },
                    "network": {
                      "type": "string"
                    },
                    "payer": {
                      "type": "string"
                    },
                    "settlement_tx_hash": {
                      "type": "string"
                    },
                    "delivery_state": {
                      "type": "string"
                    },
                    "result": {
                      "type": "object"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-pricing-usdc": {
          "quick": 0.005,
          "deep": 0.019
        },
        "x-genesis-network": "eip155:8453",
        "x-genesis-asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "x-genesis-product-id": "GEN-FLAG-004",
        "x-genesis-canonical-slug": "release-guardian"
      }
    },
    "/api/flagships/check-api-breaking-change/facilitator/dexter": {
      "post": {
        "operationId": "flagship_check_api_breaking_change_dexter",
        "summary": "Check API Breaking Change (Dexter no-account facilitator)",
        "description": "GENESIS Release Guardian — Detect breaking API/OpenAPI/schema changes and release risk between two versions.",
        "tags": [
          "flagship",
          "release-guardian",
          "breaking change detection",
          "openapi compatibility",
          "schema drift"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "dynamic",
            "currency": "USD",
            "min": "0.005",
            "max": "0.019"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "tier"
                ],
                "properties": {
                  "tier": {
                    "type": "string",
                    "enum": [
                      "quick",
                      "deep"
                    ],
                    "default": "quick"
                  },
                  "input": {
                    "type": "object",
                    "description": "Product-specific input; see the product landing page."
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "paid": {
                      "type": "boolean"
                    },
                    "flagship": {
                      "type": "string"
                    },
                    "tier": {
                      "type": "string"
                    },
                    "amount": {
                      "type": "number"
                    },
                    "asset": {
                      "type": "string"
                    },
                    "network": {
                      "type": "string"
                    },
                    "payer": {
                      "type": "string"
                    },
                    "settlement_tx_hash": {
                      "type": "string"
                    },
                    "delivery_state": {
                      "type": "string"
                    },
                    "result": {
                      "type": "object"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-pricing-usdc": {
          "quick": 0.005,
          "deep": 0.019
        },
        "x-genesis-network": "eip155:8453",
        "x-genesis-asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "x-genesis-product-id": "GEN-FLAG-004",
        "x-genesis-canonical-slug": "release-guardian",
        "x-genesis-facilitator": "dexter"
      }
    },
    "/api/flagships/agent-assurance": {
      "post": {
        "operationId": "flagship_agent_assurance",
        "summary": "Audit an agent or MCP server for readiness, observed risk and evidence",
        "description": "GENESIS Agent Assurance — Audit an agent or MCP server for readiness, observed risk, and evidence.",
        "tags": [
          "flagship",
          "agent-assurance",
          "mcp readiness",
          "agent security",
          "tool contract"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "dynamic",
            "currency": "USD",
            "min": "0.005",
            "max": "0.029"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "tier"
                ],
                "properties": {
                  "tier": {
                    "type": "string",
                    "enum": [
                      "quick",
                      "deep"
                    ],
                    "default": "quick"
                  },
                  "input": {
                    "type": "object",
                    "description": "Product-specific input; see the product landing page."
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "paid": {
                      "type": "boolean"
                    },
                    "flagship": {
                      "type": "string"
                    },
                    "tier": {
                      "type": "string"
                    },
                    "amount": {
                      "type": "number"
                    },
                    "asset": {
                      "type": "string"
                    },
                    "network": {
                      "type": "string"
                    },
                    "payer": {
                      "type": "string"
                    },
                    "settlement_tx_hash": {
                      "type": "string"
                    },
                    "delivery_state": {
                      "type": "string"
                    },
                    "result": {
                      "type": "object"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-pricing-usdc": {
          "quick": 0.005,
          "deep": 0.029
        },
        "x-genesis-network": "eip155:8453",
        "x-genesis-asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "x-genesis-product-id": "GEN-FLAG-005",
        "x-genesis-canonical-slug": "agent-assurance"
      }
    },
    "/api/flagships/agent-assurance/facilitator/dexter": {
      "post": {
        "operationId": "flagship_agent_assurance_dexter",
        "summary": "GENESIS Agent Assurance (Dexter no-account facilitator)",
        "description": "GENESIS Agent Assurance — Audit an agent or MCP server for readiness, observed risk, and evidence.",
        "tags": [
          "flagship",
          "agent-assurance",
          "mcp readiness",
          "agent security",
          "tool contract"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "dynamic",
            "currency": "USD",
            "min": "0.005",
            "max": "0.029"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "tier"
                ],
                "properties": {
                  "tier": {
                    "type": "string",
                    "enum": [
                      "quick",
                      "deep"
                    ],
                    "default": "quick"
                  },
                  "input": {
                    "type": "object",
                    "description": "Product-specific input; see the product landing page."
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "paid": {
                      "type": "boolean"
                    },
                    "flagship": {
                      "type": "string"
                    },
                    "tier": {
                      "type": "string"
                    },
                    "amount": {
                      "type": "number"
                    },
                    "asset": {
                      "type": "string"
                    },
                    "network": {
                      "type": "string"
                    },
                    "payer": {
                      "type": "string"
                    },
                    "settlement_tx_hash": {
                      "type": "string"
                    },
                    "delivery_state": {
                      "type": "string"
                    },
                    "result": {
                      "type": "object"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-pricing-usdc": {
          "quick": 0.005,
          "deep": 0.029
        },
        "x-genesis-network": "eip155:8453",
        "x-genesis-asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "x-genesis-product-id": "GEN-FLAG-005",
        "x-genesis-canonical-slug": "agent-assurance",
        "x-genesis-facilitator": "dexter"
      }
    },
    "/api/flagships/check-mcp-readiness": {
      "post": {
        "operationId": "flagship_check_mcp_readiness",
        "summary": "Audit an agent or MCP server for readiness, observed risk and evidence",
        "description": "GENESIS Agent Assurance — Audit an agent or MCP server for readiness, observed risk, and evidence.",
        "tags": [
          "flagship",
          "agent-assurance",
          "mcp readiness",
          "agent security",
          "tool contract"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "dynamic",
            "currency": "USD",
            "min": "0.005",
            "max": "0.029"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "tier"
                ],
                "properties": {
                  "tier": {
                    "type": "string",
                    "enum": [
                      "quick",
                      "deep"
                    ],
                    "default": "quick"
                  },
                  "input": {
                    "type": "object",
                    "description": "Product-specific input; see the product landing page."
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "paid": {
                      "type": "boolean"
                    },
                    "flagship": {
                      "type": "string"
                    },
                    "tier": {
                      "type": "string"
                    },
                    "amount": {
                      "type": "number"
                    },
                    "asset": {
                      "type": "string"
                    },
                    "network": {
                      "type": "string"
                    },
                    "payer": {
                      "type": "string"
                    },
                    "settlement_tx_hash": {
                      "type": "string"
                    },
                    "delivery_state": {
                      "type": "string"
                    },
                    "result": {
                      "type": "object"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-pricing-usdc": {
          "quick": 0.005,
          "deep": 0.029
        },
        "x-genesis-network": "eip155:8453",
        "x-genesis-asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "x-genesis-product-id": "GEN-FLAG-005",
        "x-genesis-canonical-slug": "agent-assurance"
      }
    },
    "/api/flagships/check-mcp-readiness/facilitator/dexter": {
      "post": {
        "operationId": "flagship_check_mcp_readiness_dexter",
        "summary": "Check MCP Readiness (Dexter no-account facilitator)",
        "description": "GENESIS Agent Assurance — Audit an agent or MCP server for readiness, observed risk, and evidence.",
        "tags": [
          "flagship",
          "agent-assurance",
          "mcp readiness",
          "agent security",
          "tool contract"
        ],
        "security": [],
        "x-payment-info": {
          "price": {
            "mode": "dynamic",
            "currency": "USD",
            "min": "0.005",
            "max": "0.029"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "tier"
                ],
                "properties": {
                  "tier": {
                    "type": "string",
                    "enum": [
                      "quick",
                      "deep"
                    ],
                    "default": "quick"
                  },
                  "input": {
                    "type": "object",
                    "description": "Product-specific input; see the product landing page."
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Settled premium result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "paid": {
                      "type": "boolean"
                    },
                    "flagship": {
                      "type": "string"
                    },
                    "tier": {
                      "type": "string"
                    },
                    "amount": {
                      "type": "number"
                    },
                    "asset": {
                      "type": "string"
                    },
                    "network": {
                      "type": "string"
                    },
                    "payer": {
                      "type": "string"
                    },
                    "settlement_tx_hash": {
                      "type": "string"
                    },
                    "delivery_state": {
                      "type": "string"
                    },
                    "result": {
                      "type": "object"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment Required; PAYMENT-REQUIRED header carries the x402 v2 challenge",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-genesis-pricing-usdc": {
          "quick": 0.005,
          "deep": 0.029
        },
        "x-genesis-network": "eip155:8453",
        "x-genesis-asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "x-genesis-product-id": "GEN-FLAG-005",
        "x-genesis-canonical-slug": "agent-assurance",
        "x-genesis-facilitator": "dexter"
      }
    }
  }
}