Data Fetching

Read-only endpoints for user/global staking info and fee wallet balance.

Get user's staking information

get
Query parameters
addressstringRequired
Responses
200

User staking details

application/json
get
GET /api/staking/getStake HTTP/1.1
Host: app.strikefinance.org
Accept: */*
{
  "stakedAmount": 1,
  "rewards": 1
}

Get global staking statistics

get
Responses
200

Global staking statistics

application/json
get
GET /api/staking/getAllStake HTTP/1.1
Host: app.strikefinance.org
Accept: */*
{
  "allStakedAmount": 1,
  "uniqueStakers": 1,
  "strikeBurnt": 1,
  "totalADARewardsDistributed": 1,
  "upcomingADARewards": 1,
  "currentAPR": 1,
  "nextDistributionPosixTime": 1
}