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.

circle-exclamation

Base URLs

  • Subnets: https://dashboard.mor.org/api/builders/subnets

  • Stakers: https://dashboard.mor.org/api/builders/stakers

Quickstart

List all subnets
curl "https://dashboard.mor.org/api/builders/subnets"
Get stakers for a subnet
curl "https://dashboard.mor.org/api/builders/stakers?subnet_id=0xYOUR_SUBNET_ID"
Pagination example
curl "https://dashboard.mor.org/api/builders/stakers?subnet_id=0xYOUR_SUBNET_ID&limit=100&offset=100"
circle-info

Prefer fields ending in Formatted. Example: totalStakedFormatted, stakedFormatted.

Response shape

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?