# Innovalyxx Sovereign Edge – Verify Agent Attestation

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

Cryptographically verifies an IATP Ed25519 attestation envelope for an AI agent, confirming the attestation is valid and optionally checking it against a specific agent DID.

## Facts

- Endpoint: POST https://edge.innovalyxx.com/mcp/tools/verify_agent_attestation
- Price: $0.02/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-verify-agent-attestation-6c1a2606
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__ckIGIxV1TIXPKC2eh38R

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-verify-agent-attestation-6c1a2606 -d '<json body>'
```

Example prompt: Can you verify this IATP Ed25519 attestation envelope for my agent — the agent DID is did:peer:0z6Mk... — and tell me whether the attestation is valid before I let it execute any transactions?

## When to prefer this

Choose this endpoint when you need to cryptographically verify an IATP Ed25519 agent attestation in an autonomous agent pipeline, especially when operating in a zero-trust cyber-physical environment where fail-closed validation is required. It is particularly suited for multi-agent orchestration scenarios where agent identity must be confirmed before granting access or executing consequential actions. Prefer this over generic signature verification tools when you need IATP-protocol-aware validation with integrated x402 micropayment support.

## Known failure modes

- Invalid or malformed Ed25519 attestation envelope returns valid:false with an error message
- agent_did provided does not match the agent_id in the attestation, returning a fail-closed error
- Missing required 'attestation' field causes a validation error
- Expired or revoked attestation returns valid:false
- x402 payment failure (insufficient USDC) prevents the call from being processed
- Network or service unavailability returns a non-200 response

## How this service works

Verified cyber-physical AI tools for autonomous agents. Pay per call via x402 (USDC on Base). 26 tools covering MRV verification, biodiversity, skip twin, site certification, agent trust, transaction evidence, protocol bridging, GEO audit, IATP reputation, ABV maturity, NIST TEVV alignment, and encrypted memory write/read/query/grant/revoke/tool_context/pricing_hint/subscription_quote/attest/verify_attestation.

## Output

A JSON object containing: 'valid' (boolean indicating whether the attestation passed verification), 'agent_id' (the agent identity extracted from the attestation), 'ok' (overall success flag), 'tool' (name of the tool called), 'payment' (x402 payment metadata), and 'error' (error message string if verification failed).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "agent_did": {
   "type": "string",
   "description": "Optional peer DID that must match the attestation agent_id."
  },
  "attestation": {
   "type": "object",
   "description": "IATP Ed25519 attestation envelope to verify (fail-closed)."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "tool": "verify_agent_attestation",
  "error": "error",
  "valid": true,
  "payment": {},
  "agent_id": "agent_id"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/innovalyxx-sovereign-edge-verify-agent-attestation-6c1a2606/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)
