Score how clearly an AI agent can discover, parse, and reason about a public API response
Score how clearly an AI agent can discover, parse, and reason about a public API response.
1000 (raw units)
price
9
calls / 30d
5
unique payers
2026-09-14
updated
Provider
endpoint-iq-production.up.railway.app · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xBf11E11aB3607Ae7f1c51b79fd0e585C0cca4B82",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "1000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"context": {
"summary": "Optional semantic description of the target response."
},
"timeoutMs": 8000,
"url": "https://api.github.com/repos/octocat/Hello-World"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"dimensions": {
"parseability": {
"score": 1
},
"schemaClarity": {
"score": 0.62
},
"semanticClarity": {
"score": 0.9
}
},
"grade": "B",
"schema": "endpoint-iq/readability/v1",
"score": 0.746,
"status": "ok",
"warnings": []
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"context": {
"description": "Optional summary, notes, or OpenAPI context.",
"type": "object"
},
"timeoutMs": {
"maximum": 15000,
"minimum": 250,
"type": "integer"
},
"url": {
"description": "Public HTTPS endpoint to inspect with one bounded GET.",
"format": "uri",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"dimensions": {
"type": "object"
},
"grade": {
"enum": [
"A",
"B",
"C",
"D",
"F"
],
"type": "string"
},
"schema": {
"type": "string"
},
"score": {
"maximum": 1,
"minimum": 0,
"type": "number"
},
"status": {
"type": "string"
},
"warnings": {
"type": "array"
}
},
"required": [
"schema",
"status",
"score",
"grade"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
},
"builder-code": {
"info": {
"s": [
"cdp_sdk_server"
]
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"a": {
"description": "App builder code",
"pattern": "^[a-z0-9_]{1,32}$",
"type": "string"
},
"s": {
"description": "Service builder codes",
"items": {
"pattern": "^[a-z0-9_]{1,32}$",
"type": "string"
},
"maxItems": 11,
"type": "array"
},
"w": {
"description": "Wallet builder code",
"pattern": "^[a-z0-9_]{1,32}$",
"type": "string"
}
},
"type": "object"
}
},
"eip2612GasSponsoring": {},
"erc20ApprovalGasSponsoring": {}
}Use it
curl
curl "https://endpoint-iq-production.up.railway.app/v1/score" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://endpoint-iq-production.up.railway.app/v1/score");
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://endpoint-iq-production.up.railway.app/v1/score")
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/12881.json, and this resource appears in /discovery/resources and /discovery/search.