Getting started
Last updated
Was this helpful?
Fetch subnet and staker data from the Morpheus Builders ecosystem on Base.
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.
Subnets: https://dashboard.mor.org/api/builders/subnets
Stakers: https://dashboard.mor.org/api/builders/stakers
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"Prefer fields ending in Formatted. Example: totalStakedFormatted, stakedFormatted.
Every response is JSON with a consistent envelope:
success (boolean)
network (string, typically base)
timestamp (ISO 8601 string)
data (payload)
Always check success === true before processing data.
Last updated
Was this helpful?
Was this helpful?