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 endpoint

  • limit (number, optional, default 100, max 100) β€” results per page

  • offset (number, optional, default 0) β€” 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:

Field
Type
Description

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

Field
Type
Description

limit

number

Results per page (max 100)

offset

number

Current offset

total

number

Total number of stakers

hasMore

boolean

Additional result available

circle-info

pagination.limit is the limit applied by the API. It can differ from the requested value.

data.stakers[]

Field
Type
Description

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

Field
Type
Description

totalStakers

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

Open in Postmanarrow-up-right

Last updated

Was this helpful?