Getting started
Fetch subnet and staker data from the Morpheus Builders ecosystem on Base.
Why this exists
Builders register subnets that users can stake MOR into. Builders then gate perks based on stake. This API lets you identify stakers programmatically.
You can call these endpoints from code or directly via the URL.
Emissions distribution may change in the future. Future versions may also factor subnet utilization.
Base URLs
Subnets:
https://dashboard.mor.org/api/builders/subnetsStakers:
https://dashboard.mor.org/api/builders/stakers
Quickstart
curl "https://dashboard.mor.org/api/builders/subnets"curl "https://dashboard.mor.org/api/builders/stakers?subnet_id=0xYOUR_SUBNET_ID"curl "https://dashboard.mor.org/api/builders/stakers?subnet_id=0xYOUR_SUBNET_ID&limit=100&offset=100"Response shape
Every response is JSON with a consistent envelope:
success(boolean)network(string, typicallybase)timestamp(ISO 8601 string)data(payload)
Always check success === true before processing data.
Last updated
Was this helpful?