# Rubric Protocol – Attested Hedera Latest Transaction Facts

> Rubric Protocol – Attested Hedera Latest Transaction Facts 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-15).

Returns the latest attested Hedera network facts (HBAR exchange rate, gas fees, supply, node roster, throughput, topic state) for the most recent transaction, each response carrying an ML-DSA-65 post-quantum attestation ID.

## Facts

- Endpoint: GET https://rubric-protocol.com/v1/x402/hedera-facts/latest-tx
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/rubric-protocol-attested-hedera-latest-transaction-facts-0d5c459c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HiWcM1ZsjUXKPTogBlLTV

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-hedera-latest-transaction-facts-0d5c459c
```

Example prompt: Pull the latest attested Hedera network facts — HBAR exchange rate, gas fees, and node roster — and include the ML-DSA-65 attestation ID so I can prove what the network state was when my agent made its decision.

## When to prefer this

Choose this endpoint when your AI agent needs cryptographically attested, tamper-evident Hedera network facts — especially for compliance, audit trails, or provable decision logs where you must demonstrate exactly what on-chain state the agent observed. Prefer it over raw Hedera Mirror Node APIs when you need a post-quantum (ML-DSA-65) signed attestation ID bundled with the data.

## Known failure modes

- Network unavailability returns a 503 or timeout
- Invalid or expired payment token returns a 402 payment required error
- Hedera mainnet data lag may cause stale snapshot if the network is congested
- Malformed GET request returns a 400 bad request
- Rate limiting on repeated rapid calls may return 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

A JSON response containing the latest Hedera network facts snapshot including HBAR exchange rate, gas fees, total supply, node roster, network throughput, and topic state, along with an ML-DSA-65 post-quantum attestation ID that cryptographically binds the response to the served snapshot for tamper-evident verification.

## 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-hedera-latest-transaction-facts-0d5c459c/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)
