# Innovalyxx Sovereign Edge – Get Agent Visibility

> Innovalyxx Sovereign Edge – Get Agent Visibility is a paid API for AI agents from edge.innovalyxx.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-19).

Returns a GEO score and estimated LLM mention rate for a given merchant URL, indicating how visible that URL is to AI agents and large language models.

## Facts

- Endpoint: POST https://edge.innovalyxx.com/mcp/tools/get_agent_visibility
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-19
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/innovalyxx-sovereign-edge-get-agent-visibility-a4841103
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6tcUihNNfJAjjWzlIAGbX

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability innovalyxx-sovereign-edge-get-agent-visibility-a4841103 -d '<json body>'
```

Example prompt: What's the GEO score and estimated LLM mention rate for https://shop.example.com — I want to know how visible that merchant site is to AI agents and language models.

## When to prefer this

Choose this endpoint when you need to quantify how visible a specific merchant or web URL is to LLMs and AI agents, particularly for GEO (Generative Engine Optimization) auditing. It is distinct from traditional SEO tools because it focuses specifically on AI/LLM mention rates rather than search engine rankings.

## Known failure modes

- Invalid or unreachable URL returns an error response
- Payment failure via x402 results in a 402 status with no data
- Unrecognized or newly registered domains may return a GEO score of 0 with no historical data
- Malformed input (missing url field) returns a validation error

## How this service works

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.

## Output

A JSON object containing a boolean ok flag, the queried URL, the tool name, payment metadata, a numeric GEO score (0–1 or 0–100 scale), and an estimated LLM mention rate (numeric) reflecting how frequently the URL is cited or surfaced by large language models.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "url"
 ],
 "properties": {
  "url": {
   "type": "string",
   "description": "Absolute HTTPS URL whose generative-engine visibility score and estimated LLM mention rate should be returned."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "ok": "boolean",
 "url": "string",
 "tool": "string",
 "payment": "object",
 "geo_score": "number",
 "estimated_llm_mention_rate": "number"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/innovalyxx-sovereign-edge-get-agent-visibility-a4841103/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from edge.innovalyxx.com](https://www.zero.xyz/host/edge.innovalyxx.com/llms.txt)
