Provide one inline OpenAPI document or public OpenAPI URL
Provide one inline OpenAPI document or public OpenAPI URL. Receive a JSON buyer-readiness score, rule results, and concrete fixes for payment metadata, missing examples, descriptions, and HTTP 422 traps.
100000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-20
updated
Provider
readiness-linter.krimskrams.xyz · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x276efA09388fB1578A6c415B8F90D26fdfCe0CF2",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "100000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"openapi": {
"info": {
"description": "Return example data.",
"title": "Example API"
},
"paths": {
"/v1/example": {
"get": {
"description": "Return example data for a search query.",
"parameters": [
{
"description": "Search text.",
"example": "hello",
"in": "query",
"name": "q",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"example": {
"result": "ok"
}
}
}
}
},
"summary": "Return example data",
"x-payment-info": {
"price": {
"amount": "0.020000",
"currency": "USD",
"mode": "fixed"
},
"protocols": [
{
"x402": {}
}
]
}
}
}
},
"servers": [
{
"url": "https://api.example.com"
}
]
}
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"checks": [
{
"fix": "",
"id": "required_params_examples_types",
"message": "Every required parameter and required body field has a type and an example.",
"passed": true,
"severity": "critical"
}
],
"score": 82,
"summary": "Score 82/100. 1 of 7 checks failed."
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"description": "Caller-provided OpenAPI source. Send exactly one of the two fields.",
"properties": {
"openapi": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Openapi"
},
"openapi_url": {
"anyOf": [
{
"maxLength": 2048,
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Openapi Url"
}
},
"title": "LintRequest",
"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": {
"description": "The full buyer-readiness report for one OpenAPI document.",
"properties": {
"checks": {
"items": {
"description": "One buyer-readiness rule and its outcome.",
"properties": {
"fix": {
"title": "Fix",
"type": "string"
},
"id": {
"title": "Id",
"type": "string"
},
"message": {
"title": "Message",
"type": "string"
},
"passed": {
"title": "Passed",
"type": "boolean"
},
"severity": {
"enum": [
"critical",
"high",
"medium",
"low"
],
"title": "Severity",
"type": "string"
}
},
"title": "CheckResult",
"type": "object"
},
"title": "Checks",
"type": "array"
},
"score": {
"maximum": 100,
"minimum": 0,
"title": "Score",
"type": "integer"
},
"summary": {
"title": "Summary",
"type": "string"
}
},
"title": "LintResponse",
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://readiness-linter.krimskrams.xyz/v1/lint" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://readiness-linter.krimskrams.xyz/v1/lint");
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://readiness-linter.krimskrams.xyz/v1/lint")
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/9118.json, and this resource appears in /discovery/resources and /discovery/search.