Get stakers
List stakers for a specific subnet, with pagination.
Returns stakers for a specific subnet on Base.
You must pass a subnet_id. Get it from Get subnets.
Request
GET https://dashboard.mor.org/api/builders/stakers
Query parameters
subnet_id(string, required) β Subnet ID from the subnets endpointlimit(number, optional, default100, max100) β results per pageoffset(number, optional, default0) β results to skip
Example URL:
https://dashboard.mor.org/api/builders/stakers?subnet_id=0xSUBNET_ID&limit=100&offset=0
Response
Common top-level fields:
success
boolean
Call status
network
string
Identifier (e.g. base)
timestamp
string
ISO 8601 timestamp
subnetID
string
Queried subnet_id
pagination
object
Pagination status
data.stakers
array
Array of stakers with metadata
pagination
paginationlimit
number
Results per page (max 100)
offset
number
Current offset
total
number
Total number of stakers
hasMore
boolean
Additional result available
data.stakers[]
data.stakers[]address
string
Staker wallet address
staked
string
User amount staked (wei)
stakedFormatted
number
User amount staked (number)
lastStake
string
Unix timestamp of last stake
lastStakeDate
string
ISO 8601 timestamp of last stake
data.totals
data.totalstotalStakers
number
Total unique subnet stakers
totalStaked
string
Total amount staked to subnet (wei)
totalStakedFormatted
number
Total amount staked to subnet (number)
Examples
Sample response
Postman
Last updated
Was this helpful?