Inspect public context
Start with status, landing, summary, Analyst Kit CSV and feature schema. No key required.
Open status JSON2026-08-30.110942v1The API surface has three entry points. Public endpoints help you inspect the published state. Analyst Kit gives a no-pipeline route to CSV and notebooks. Authenticated files are the subscriber delivery path for production ingestion.
Start with status, landing, summary, Analyst Kit CSV and feature schema. No key required.
Open status JSONOpen one Analyst Kit CSV, join one daily metric on date + chain, then summarize the metric by regime.
Open Analyst KitUse X-API-Key for entitled Gold, Derived, Meta and Briefs artifacts once the workflow is proven.
Open dashboardThese calls require no key. Use them to confirm that public status is readable and that a regime-calendar CSV can load directly into a notebook or scheduled data job.
curl https://www.urdatlas.com/api/v1/statuspython - <<'PY'
import pandas as pd
url = "https://www.urdatlas.com/api/v1/analyst-kit/ethereum/regime-calendar"
df = pd.read_csv(url)
print(df.tail())
PYUse Analyst Kit to join one chain calendar to one metric you already trust.
Use the public sample pack, reference, and provenance page.
History access documents the 90-day Basic entitlement and Pro full archive before you subscribe.
Public endpoints require no key. Authenticated file delivery uses X-API-Key. Keys are created from the dashboard after purchase. Checkout starts a subscription purchase, and the customer portal manages an existing subscription.
curl -H "X-API-Key: ta_live_xxxxxxxxx" https://www.urdatlas.com/api/v1/files/meta/bitcoin/90d/latest.jsonThe authenticated file route supports regular bundle windows for simple scheduled ingestion. Pro can additionally use the manifest and original day-file paths for the complete published archive.
/api/v1/files/[genre]/[chain]/[window]/latest.json/api/v1/files/meta/ethereum/90d/latest.json/api/v1/files/meta/ethereum/manifest.json/api/v1/files/meta/ethereum/YYYY-MM-DD.jsonbitcoin, ethereum, arbitrum, basemetaRegime, confidence, status, scorecard, drivers and methodology context.
goldDaily canonical metric rows for subscribed chains and windows.
derivedDerived windows and moving summaries built from published data.
briefsNarrative brief artifacts generated from the published state layer.
| Method | Path | Purpose |
|---|---|---|
| GET | /api/v1/status | Per-chain freshness, lag, and publication context. |
| GET | /api/v1/landing | Landing snapshot across supported chains. |
| GET | /api/v1/summary/[chain] | Chain summary with regime, scorecard, confidence, freshness and drivers. |
| GET | /api/v1/glossary | Public glossary payload. |
| GET | /api/v1/thresholds/defaults | Canonical default threshold values. |
| GET | /api/v1/methodology/versions | Published methodology version history. |
Analyst Kit is public and optimized for evaluation: CSV, text summary, schema and notebook artifacts that work before the customer has an internal pipeline.
| Method | Path | Purpose |
|---|---|---|
| GET | /api/v1/analyst-kit/[chain]/regime-calendar | CSV calendar for one chain with one row per observation date. |
| GET | /api/v1/analyst-kit/[chain]/weekly-summary | Plain-text network-state summary for reports and review notes. |
| GET | /api/v1/analyst-kit/feature-schema | Machine-readable schema for the Analyst Kit feature table. |
| GET | /api/v1/analyst-kit/starter-notebook | Runnable notebook that loads Urd Atlas and builds an example join. |
| Method | Path | Purpose |
|---|---|---|
| GET | /api/v1/files/[genre]/[chain]/[window]/latest.json | Authenticated delivery for subscriber bundle windows. |
| GET | /api/v1/files/[genre]/[chain]/manifest.json | Pro: discover the complete published archive for Gold, Derived and Meta. |
| GET | /api/v1/files/[genre]/[chain]/YYYY-MM-DD.json | Pro: fetch an original published day file from the full archive. |
| POST | /api/v1/keys | Create a new API key from the dashboard. |
| DELETE | /api/v1/keys | Revoke an API key. |
| POST | /api/v1/checkout | Checkout endpoint for starting a subscription purchase. |
| POST | /api/v1/checkout/portal | Customer portal endpoint for managing an existing subscription. |