Getting started

OXAR Radar API

Real-time RWA market intelligence for Solana and Ethereum. Wallet positions, protocol snapshots, AI explanations — all queryable in JSON, refreshed every five minutes.

What Radar does

Radar indexes every major RWA issuer on Ethereum and Solana — BlackRock BUIDL, Ondo USDY/OUSG, Maple, Centrifuge, Backed, and OXAR — and exposes their NAV, TVL, holder data, and discrete events through a single REST API.

Two kinds of consumers use it: builders who need clean data for their own UI, and analysts who pipe responses into spreadsheets, Jupyter notebooks, or BI dashboards.

Concepts

A protocol is a single tokenised issuer on a single chain. Each protocol has a slug like ondo-usdy or blackrock-buidl.

A snapshot is the protocol's state at one point in time. Radar captures a snapshot every five minutes via Vercel Cron. Snapshots are immutable and append-only.

An analysis is a wallet-level read computed on demand. It groups a wallet's RWA positions, scores risk, and optionally generates a plain-language explanation via Claude Haiku.

Quickstart

1. Sign in at /dashboard and mint a key.

2. Hit the API with your bearer token:

cURL · list protocols
curl https://radar.oxar.app/api/v1/protocols \
  -H "Authorization: Bearer rdr_live_..."

You'll get a JSON response with every protocol Radar tracks. From there, jump to Protocols for the full schema.

Next steps