Live AI-citation check: runs fresh probes against major AI assistants and reports whether
Live AI-citation check: runs fresh probes against major AI assistants and reports whether a domain is cited for its vertical's buying questions — citation rate per provider, list position, and whether the domain's agent-card was discovered. Fresh probes per call (not cached). $0.50 per check. Free companion diagnosis: /api/x402/deep-scan.
500000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-01
updated
Provider
mudko.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x53598173ce7c26025bab0520d9e9d0c28fbcf7de",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "500000",
"maxTimeoutSeconds": 120
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"domain": "example.com (string, required - bare domain to check)",
"vertical": "healthcare_practice (string, optional - vertical id)"
},
"type": "http"
},
"output": {
"example": {
"agent_card_discovered": false,
"citation_rate": 0.25,
"domain": "example.com",
"paid": true,
"providers": [
{
"avg_position": 3,
"citations": 1,
"probes": 2,
"provider": "openai"
}
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"domain": {
"description": "Bare domain to check citations for (required).",
"type": "string"
},
"vertical": {
"description": "Optional vertical id to pick prompt sets (auto-detected otherwise).",
"type": "string"
}
},
"required": [
"domain"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"agent_card_discovered": {
"type": "boolean"
},
"citation_rate": {
"type": "number"
},
"domain": {
"type": "string"
},
"providers": {
"type": "array"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://mudko.com/api/x402/citation-check" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://mudko.com/api/x402/citation-check");
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://mudko.com/api/x402/citation-check")
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/5343.json, and this resource appears in /discovery/resources and /discovery/search.