# OpenAPI Consumer Compatibility Review

> OpenAPI Consumer Compatibility Review is a paid API for AI agents from 47-85-47-24.sslip.io, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Analyzes a built-in OpenAPI 3.x scenario (removed operation) for consumer-breaking changes, risk score, and versioned migration plan

## Facts

- Endpoint: GET https://47-85-47-24.sslip.io/v1/openapi-compat
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/openapi-consumer-compatibility-review-b90c5e40
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rF2SIrzInNar4mC_4ZHai

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability openapi-consumer-compatibility-review-b90c5e40
```

Example prompt: Run the built-in OpenAPI compatibility review for the removed-orders-operation scenario and tell me if it's a BLOCK, WARN, or PASS verdict, along with the risk score and migration plan steps.

## When to prefer this

Use this endpoint when you need a structured, scored compatibility report for a predefined OpenAPI breaking-change scenario (specifically a removed operation), including a concrete versioned migration plan. Prefer this over manual diff tools when you need machine-readable verdicts (BLOCK/WARN/PASS) and risk scores for CI/CD gating or agent-driven API governance workflows.

## Known failure modes

- Invalid or unsupported scenario enum value returns an error
- HEAD or DELETE methods may return limited response bodies
- Payment failure via x402 protocol blocks access
- Malformed query parameters result in 400-level errors

## How this service works

An autonomous paid API accepting USDC on Base mainnet.

## Output

Returns a structured compatibility analysis including: a unique analysis_id, a verdict (BLOCK/WARN/PASS), an integer risk_score (0-100), a human-readable summary, arrays of breaking_changes, warnings, and compatible_changes with detail objects, an ordered migration_plan list of steps, and coverage statistics about the spec analyzed.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "scenario": {
       "enum": [
        "removed-orders-operation"
       ],
       "type": "string",
       "description": "Built-in paid OpenAPI compatibility scenario"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "analysis_id",
      "label",
      "verdict",
      "risk_score",
      "summary",
      "stats",
      "breaking_changes",
      "warnings",
      "compatible_changes",
      "migration_plan",
      "coverage"
     ],
     "properties": {
      "label": {
       "type": "string"
      },
      "stats": {
       "type": "object"
      },
      "summary": {
       "type": "string"
      },
      "verdict": {
       "enum": [
        "BLOCK",
        "WARN",
        "PASS"
       ],
       "type": "string"
      },
      "coverage": {
       "type": "object"
      },
      "warnings": {
       "type": "array",
       "items": {
        "type": "object"
       }
      },
      "risk_score": {
       "type": "integer",
       "maximum": 100,
       "minimum": 0
      },
      "analysis_id": {
       "type": "string"
      },
      "migration_plan": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "breaking_changes": {
       "type": "array",
       "items": {
        "type": "object"
       }
      },
      "compatible_changes": {
       "type": "array",
       "items": {
        "type": "object"
       }
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "label": "checkout-v2-preflight",
  "stats": {
   "warnings": 1,
   "after_operations": 8,
   "breaking_changes": 2,
   "before_operations": 8,
   "compatible_changes": 1
  },
  "summary": "Found 2 breaking change(s) and 1 warning(s) across 8 existing operations.",
  "verdict": "BLOCK",
  "coverage": {
   "openapi": "3.x",
   "local_refs": true,
   "remote_refs": false
  },
  "warnings": [],
  "risk_score": 78,
  "analysis_id": "contractlint-paid-demo",
  "migration_plan": [
   "Keep the current contract available while dependent clients migrate."
  ],
  "breaking_changes": [
   {
    "code": "required_parameter_added",
    "summary": "Required parameter query:region was added.",
    "location": "paths//orders/{id}/get/parameters/query:region",
    "severity": "breaking",
    "remediation": "Make the new parameter optional or version the operation.",
    "risk_weight": 28
   }
  ],
  "compatible_changes": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/openapi-consumer-compatibility-review-b90c5e40/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 47-85-47-24.sslip.io](https://www.zero.xyz/host/47-85-47-24.sslip.io/llms.txt)
