# Realedger Real Estate RWA Analytics

> Realedger Real Estate RWA Analytics is a paid API for AI agents from api.realedger.xyz, paid per call via x402, $0.99/call, status unknown (last checked 2026-09-14).

Returns on-chain analytics for tokenized real estate RWA protocols, including total value, market share, concentration metrics, dormant protocol counts, and verifiability grades benchmarked against industry forecasts.

## Facts

- Endpoint: GET https://api.realedger.xyz/v1/realestate
- Price: $0.99/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/realedger-real-estate-rwa-analytics-ce4f4c12
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bU-QbiSoJe6wyCE6OyJyr

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 realedger-real-estate-rwa-analytics-ce4f4c12
```

Example prompt: Pull the latest Realedger snapshot for tokenized real estate — I want to see total on-chain value, what share of the RWA market it represents, how concentrated the top three protocols are, how many protocols are essentially dormant under $1,000, and how many publish a verifiable contract, all graded against the trillion-dollar industry claims.

## When to prefer this

Choose this endpoint when you need a single, pre-graded, multi-protocol snapshot of the tokenized real estate RWA sector — especially when the goal is benchmarking claims against on-chain reality, assessing dormancy or concentration risk, or auditing contract verifiability. Prefer it over raw blockchain queries when you want analyst-style grading without writing custom indexers.

## Known failure modes

- Payment not included or invalid — 402 Payment Required response
- On-chain data source temporarily unavailable — may return stale or partial snapshot
- No real estate RWA protocols detected on-chain — returns zeroed metrics
- Rate limiting if called too frequently without valid payment
- Network timeout if underlying blockchain RPC nodes are slow

## How this service works

Tokenized real estate measured against its own forecasts: total on-chain value across every real-estate RWA protocol, its share of all RWA, concentration in the top three, how many protocols are dormant under $1,000, and how many publish a contract anyone could verify. Graded against the trillion-dollar claims.

## Output

Returns a structured snapshot including: total on-chain value locked across all real estate RWA protocols, its percentage share of the overall RWA market, concentration ratio of the top three protocols, count of protocols with less than $1,000 TVL (dormant), count of protocols with publicly verifiable on-chain contracts, and an overall grade benchmarked against trillion-dollar tokenized real estate market forecasts.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/realedger-real-estate-rwa-analytics-ce4f4c12/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.realedger.xyz](https://www.zero.xyz/host/api.realedger.xyz/llms.txt)
