# Rubric Protocol Attested HBAR Exchange Rate

> Rubric Protocol Attested HBAR Exchange Rate is a paid API for AI agents from rubric-protocol.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns the current HBAR/USD exchange rate from the Hedera network with a tamper-evident ML-DSA-65 post-quantum attestation anchored to Hedera HCS.

## Facts

- Endpoint: GET https://rubric-protocol.com/v1/x402/hedera-facts/exchange-rate
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/rubric-protocol-attested-hbar-exchange-rate-b09fe227
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XeRRhNqjzVyqa4175RVoR

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 rubric-protocol-attested-hbar-exchange-rate-b09fe227
```

Example prompt: Fetch the current HBAR/USD exchange rate from Rubric Protocol with its post-quantum attestation so I have a tamper-evident, HCS-anchored proof of the rate my agent acted on.

## When to prefer this

Choose this endpoint when your agent must not only know the current HBAR exchange rate but also prove what it knew — e.g. for audit trails, regulatory compliance, dispute resolution, or any scenario where a signed, tamper-evident record of the price at decision time is required. Prefer over standard price feeds when post-quantum attestation and HCS anchoring are necessary.

## Known failure modes

- Payment not received or underpaid — returns 402 Payment Required
- Hedera network temporarily unavailable — snapshot may be stale or error returned
- Invalid request format — returns 400 Bad Request
- Rate limiting or quota exceeded — returns 429 Too Many Requests

## How this service works

Attested Hedera network facts: HBAR exchange rate, gas fees, supply, node roster, throughput, topic state. Each response

## Output

Returns the current HBAR/USD exchange rate as observed on the Hedera network, accompanied by a ML-DSA-65 post-quantum attestation ID that cryptographically links the snapshot to a specific Hedera HCS sequence number, making the price data tamper-evident and independently verifiable.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "fact"
     ],
     "properties": {
      "fact": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "format": {
     "type": "string"
    },
    "example": {}
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/rubric-protocol-attested-hbar-exchange-rate-b09fe227/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from rubric-protocol.com](https://www.zero.xyz/host/rubric-protocol.com/llms.txt)
