No-pipeline analyst
Start with CSV calendars, weekly summaries and the runnable notebook. Useful when the team needs a report, dashboard annotation or quick segmentation before building infrastructure.
Open Analyst KitWorkflows
Urd Atlas creates value after it is joined to something the user already cares about: app metrics, monitoring output, research tables, dashboard annotations or a shared feature store.
Core pattern
Join → gate → segment → explain.
The label is not the final product. The useful output is the change in interpretation after chain-wide network state is added to an existing workflow.
Start with CSV calendars, weekly summaries and the runnable notebook. Useful when the team needs a report, dashboard annotation or quick segmentation before building infrastructure.
Open Analyst KitInspect public endpoints, test the join in pandas, review validation diagnostics, then decide whether subscriber artifacts are worth integrating.
Open API DocsIngest daily network-state files into a warehouse, preserve methodology and availability metadata, and expose one shared feature table to analysts and systems.
Check validationPractical workflows
Each workflow starts from data the user already has. Urd Atlas adds daily network-state context and confidence metadata.
Implementation pattern
import pandas as pd
metrics = pd.read_csv("my_daily_app_metrics.csv")
urd = pd.read_csv("https://urdatlas.com/api/v1/analyst-kit/ethereum/regime-calendar")
joined = metrics.merge(
urd[[
"observation_date",
"chain",
"regime",
"confidence_score",
"demand_score",
"friction_score",
"capacity_score",
]],
left_on=["date", "chain"],
right_on=["observation_date", "chain"],
how="left",
)
usable = joined[joined["confidence_score"] >= 0.70]
summary = (
usable.groupby("regime")
.agg(
days=("date", "count"),
avg_daily_active_users=("daily_active_users", "mean"),
avg_support_tickets=("support_tickets", "mean"),
avg_failure_rate=("failure_rate", "mean"),
avg_demand_score=("demand_score", "mean"),
)
.sort_values("days", ascending=False)
)
print(summary)What Urd Atlas is good for
The product is strongest when users need a consistent daily or weekly context layer that can be joined, audited and reused across teams. It is especially useful when the alternative is every analyst inventing a separate definition of chain conditions.
Product boundary
BTC and ETH are published at T+1. Base and Arbitrum are weekly. That makes Urd Atlas suitable for descriptive analysis, daily or weekly monitoring, report context and point-in-time diagnostics. It should not be treated as an automated instruction or a future-state guarantee.
Next step
A new user should begin with Analyst Kit, validate the segmentation idea, then move to subscriber files or API integration when the workflow is proven.