# Innovalyxx Sovereign Edge – Biodiversity Verification

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

Verifies biodiversity claims for a habitat site by running a genomic audit against an observed species list and comparing against a claimed score, returning a proof hash and runtime attestation.

## Facts

- Endpoint: POST https://edge.innovalyxx.com/mcp/tools/verify_biodiversity
- Price: $150/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-biodiversity-verification-729960c2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IM6Kn8s6H9HN8ibthkv1k

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-biodiversity-verification-729960c2 -d '<json body>'
```

Example prompt: Run a biodiversity audit on habitat site HB-20240810 — I'm claiming a minimum score of 72 out of 100, and the observed species include Panthera leo, Loxodonta africana, and Acacia senegal. Give me the verification result and the proof hash.

## When to prefer this

Use this endpoint when an AI agent needs a cryptographically verifiable, pay-per-call biodiversity audit tied to a specific habitat and species list — particularly for MRV workflows, nature-based solution certification, biodiversity credit issuance, or ecological compliance reporting where a Lean4 proof hash and runtime attestation are required for downstream trust or on-chain submission.

## Known failure modes

- Missing or empty habitat_id returns a validation error
- Empty or malformed species_list (fewer than 1 item) causes a 400-level error
- claimed_score_min outside 0–100 range fails schema validation
- Payment failure via x402/USDC on Base results in 402 Payment Required with no audit performed
- Unknown or unresolvable habitat_id may return a verification failure with no score
- Species names not recognized in the genomic pipeline may reduce audit confidence or return partial results

## 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 containing: a boolean ok status, the tool name, payment confirmation details, a verification object with computed vs claimed biodiversity score and pass/fail outcome, a Lean4 proof hash for cryptographic integrity, and a runtime attestation object confirming execution provenance.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "habitat_id": {
   "type": "string",
   "minLength": 1,
   "description": "Habitat or site identifier for the biodiversity audit."
  },
  "species_list": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "minItems": 1,
   "description": "Observed or claimed species names used in the Genomic Audit pipeline."
  },
  "claimed_score_min": {
   "type": "number",
   "maximum": 100,
   "minimum": 0,
   "description": "Minimum biodiversity score (0–100) the agent claims. Compared against the computed score."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "tool": "verify_biodiversity",
  "payment": {},
  "verification": {},
  "lean4_proof_hash": "lean4_proof_hash",
  "runtime_attestation": {}
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/innovalyxx-sovereign-edge-biodiversity-verification-729960c2/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)
