Audit an OpenAPI document for complete schemas, useful examples, stable operation IDs, cle
Audit an OpenAPI document for complete schemas, useful examples, stable operation IDs, clear descriptions, and payment/authentication discoverability.
200000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-16
updated
Provider
i3p3mgbsn54dvlivnk6wbumal40eqtsn.lambda-url.us-east-1.on.aws · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x94bab5853bff59401b355371f9c4b8ca6d6eca9d",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "200000",
"maxTimeoutSeconds": 120
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"spec": {
"info": {
"title": "Example",
"version": "1.0.0"
},
"openapi": "3.1.0",
"paths": {}
}
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"agentReadiness": [],
"format": "openapi",
"issues": [],
"limitation": "Static contract review.",
"operations": [],
"score": 0.95,
"valid": true
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"baseUrl": {
"format": "uri",
"type": "string"
},
"spec": {
"anyOf": [
{
"type": "string"
},
{
"additionalProperties": {},
"propertyNames": {
"type": "string"
},
"type": "object"
}
]
}
},
"required": [
"spec"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"agentReadiness": {
"items": {
"type": "string"
},
"type": "array"
},
"format": {
"enum": [
"openapi",
"swagger",
"invalid"
],
"type": "string"
},
"issues": {
"items": {
"additionalProperties": false,
"properties": {
"fix": {
"type": "string"
},
"message": {
"type": "string"
},
"path": {
"type": "string"
},
"severity": {
"enum": [
"error",
"warning"
],
"type": "string"
}
},
"required": [
"path",
"severity",
"message",
"fix"
],
"type": "object"
},
"type": "array"
},
"limitation": {
"type": "string"
},
"operations": {
"items": {
"additionalProperties": false,
"properties": {
"issues": {
"items": {
"type": "string"
},
"type": "array"
},
"method": {
"type": "string"
},
"operationId": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"path": {
"type": "string"
},
"score": {
"maximum": 1,
"minimum": 0,
"type": "number"
}
},
"required": [
"method",
"path",
"operationId",
"score",
"issues"
],
"type": "object"
},
"type": "array"
},
"score": {
"maximum": 1,
"minimum": 0,
"type": "number"
},
"valid": {
"type": "boolean"
}
},
"required": [
"valid",
"score",
"format",
"issues",
"operations",
"agentReadiness",
"limitation"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
},
"payment-identifier": {
"required": false
}
}Use it
curl
curl "https://i3p3mgbsn54dvlivnk6wbumal40eqtsn.lambda-url.us-east-1.on.aws/v1/openapi-agent-auditor" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://i3p3mgbsn54dvlivnk6wbumal40eqtsn.lambda-url.us-east-1.on.aws/v1/openapi-agent-auditor");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://i3p3mgbsn54dvlivnk6wbumal40eqtsn.lambda-url.us-east-1.on.aws/v1/openapi-agent-auditor")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/7896.json, and this resource appears in /discovery/resources and /discovery/search.