# Innovalyxx Sovereign Edge – Issue Agent Attestation

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

Issues a signed trust attestation for an agent DID, optionally recording capability strings on the attestation record.

## Facts

- Endpoint: POST https://edge.innovalyxx.com/mcp/tools/issue_agent_attestation
- Price: $0.5/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-issue-agent-attestation-ed7e432b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GG5ol4T_4x22kV7f-obD6

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-issue-agent-attestation-ed7e432b -d '<json body>'
```

Example prompt: Issue a signed trust attestation for my agent with DID 'did:web:myagent.example.com' and record the capabilities 'data-analysis' and 'report-generation' on the attestation.

## When to prefer this

Choose this endpoint when you need to issue a cryptographically signed, verifiable trust attestation for an autonomous agent identified by a DID, particularly within the Innovalyxx Sovereign Edge ecosystem where IATP reputation, ABV maturity, and NIST TEVV alignment are relevant. It is well-suited for agent onboarding, multi-agent trust establishment, and capability credentialing workflows that require per-call payment via USDC on Base.

## Known failure modes

- Missing or empty agent_did returns a validation error
- Invalid DID format may be rejected
- Payment failure via x402 results in 402 response and no attestation issued
- Malformed capability strings may be ignored or rejected
- Service unavailability returns 5xx with no attestation created

## 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

Returns a JSON object with ok: true, the tool name (issue_agent_attestation), the agent DID, a unique attestation_id for the newly created signed trust record, the tier level, and a payment receipt object confirming the $0.50 USDC charge.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "agent_did": {
   "type": "string",
   "minLength": 1,
   "description": "Agent DID that will receive the signed trust attestation."
  },
  "capabilities": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "description": "Optional capability strings recorded on the attestation."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "tier": "tier",
  "tool": "issue_agent_attestation",
  "payment": {},
  "agent_did": "urn:aid:innovalyxx:sovereign-edge",
  "attestation_id": "attestation_id"
 }
}
```

## More

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