Returns a 0–100 generative-engine visibility score and estimated LLM mention rate for a UR
Returns a 0–100 generative-engine visibility score and estimated LLM mention rate for a URL. Cost $0.01 per call. Not HTTP uptime, TLS, or a credit.
10000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-17
updated
Provider
edge.innovalyxx.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xC4E347FDAEf10d2CCd4B55a2377dFBb0d5a9cDF0",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"url": "url"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"estimated_llm_mention_rate": 0,
"geo_score": 0,
"ok": true,
"payment": {},
"tool": "get_agent_visibility",
"url": "url"
},
"type": "json"
}
},
"input": {
"description": "Returns a 0–100 generative-engine visibility score and estimated LLM mention rate for a URL. Cost $0.01 per call. Not HTTP uptime, TLS, or a credit.",
"example": {
"url": "url"
},
"inputSchema": {
"additionalProperties": false,
"properties": {
"url": {
"description": "Absolute HTTPS URL whose generative-engine visibility score and estimated LLM mention rate should be returned.",
"minLength": 1,
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
},
"tool": "get_agent_visibility",
"toolName": "get_agent_visibility",
"transport": "streamable-http",
"type": "mcp"
},
"output": {
"example": {
"estimated_llm_mention_rate": 0,
"geo_score": 0,
"ok": true,
"payment": {},
"tool": "get_agent_visibility",
"url": "url"
},
"type": "json"
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"url": {
"description": "Absolute HTTPS URL whose generative-engine visibility score and estimated LLM mention rate should be returned.",
"minLength": 1,
"type": "string"
}
},
"required": [
"url"
],
"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": "Generative-engine visibility snapshot (geo_score and estimated_llm_mention_rate).",
"properties": {
"estimated_llm_mention_rate": {
"description": "Estimated LLM mention rate for the URL.",
"type": "number"
},
"geo_score": {
"description": "0–100 generative-engine visibility score.",
"type": "number"
},
"ok": {
"description": "True when the tool completed without a validation error.",
"type": "boolean"
},
"payment": {
"description": "Settlement receipt after x402 or sandbox payment.",
"type": "object"
},
"tool": {
"description": "Tool name that produced this payload.",
"type": "string"
},
"url": {
"description": "Queried URL.",
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://edge.innovalyxx.com/mcp/tools/get_agent_visibility" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://edge.innovalyxx.com/mcp/tools/get_agent_visibility");
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://edge.innovalyxx.com/mcp/tools/get_agent_visibility")
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/13458.json, and this resource appears in /discovery/resources and /discovery/search.