# Innovalyxx Sovereign Edge – memory.pricing_hint

> Innovalyxx Sovereign Edge – memory.pricing_hint 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 pricing hint for a specified verification tool scoped to an entity, including list price, discount factor, and recommended action based on prior invocations

## Facts

- Endpoint: POST https://edge.innovalyxx.com/mcp/tools/memory.pricing_hint
- 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-memory-pricing-hint-99999822
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UFzSFS3Kp0umPADfuZiGl

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-memory-pricing-hint-99999822 -d '<json body>'
```

Example prompt: Before I run the verify_biodiversity tool for entity 'proj-carbon-001', can you get a pricing hint using my wallet 0xAbCd1234567890AbCd1234567890AbCd12345678 to see what the suggested price and discount factor would be?

## When to prefer this

Use this endpoint when an AI agent or autonomous workflow needs a non-binding cost advisory before committing to a paid Innovalyxx verification tool call, especially to check for usage-based discounts, compare list vs. suggested price, or log hint hashes for audit trails. Prefer this over direct tool invocation when budget planning, discount eligibility checks, or pre-authorization workflows are required.

## Known failure modes

- Invalid or malformed owner_wallet (not exactly 42 characters or not 0x-prefixed) returns a validation error
- Missing or invalid wallet_signature causes signature recovery failure and an authentication error
- Unknown or misspelled tool_name may return a null or zero price hint with no recommended action
- Missing entity_id results in a schema validation error
- Payment via x402 not completed results in a 402 Payment Required response before the hint is returned
- Rate limiting or transient server errors may return 5xx responses

## 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 indicating whether the request succeeded, the tool name, entity ID, owner wallet, list price in USD, discount factor, suggested price in USD, prior invocation count, a recommended action string, a hint hash for audit purposes, an issued_at timestamp, and flags indicating the response is metadata-only and non-binding.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "entity_id": {
   "type": "string",
   "minLength": 1,
   "description": "Entity the recommendation is scoped to."
  },
  "tool_name": {
   "type": "string",
   "minLength": 1,
   "description": "Live verification tool to price, e.g. 'verify_biodiversity'."
  },
  "owner_wallet": {
   "type": "string",
   "maxLength": 42,
   "minLength": 42,
   "description": "0x-prefixed owner wallet. Signature must recover to this address."
  },
  "wallet_signature": {
   "type": "string",
   "description": "EIP-191 signature over the pricing-hint message."
  },
  "context_signature": {
   "type": "string",
   "description": "Optional unused field reserved for a future composed context signature."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "note": "note",
  "tool": "memory.pricing_hint",
  "binding": "false",
  "payment": {},
  "entity_id": "entity_id",
  "hint_hash": "hint_hash",
  "issued_at": "issued_at",
  "tool_name": "tool_name",
  "owner_wallet": "owner_wallet",
  "metadata_only": "true",
  "list_price_usd": 0,
  "discount_factor": 0,
  "prior_invocations": 1,
  "recommended_action": "recommended_action",
  "suggested_price_usd": 0
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/innovalyxx-sovereign-edge-memory-pricing-hint-99999822/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)
