⚑
V1 API Reference

ZERA Indexer API

Access indexed blockchain data from the ZERA network. Transactions, blocks, tokens, wallets, governance, DEX, staking, and more.

ALPHA DOCUMENTATIONThese endpoint schemas are currently in Alpha and may contain inaccuracies or incomplete payload parameters. If you encounter any structural divergence while integrating, please report it to us so we can resolve it swiftly.
https://api.zerascan.io/v1
GET ONLYJSON RESPONSES

Staking

Protocol overview, staking activity, wallet stakes, and global stake queries.

Staking Overview

GET/v1/stake?request=overview

Global staking protocol statistics.

Parameters

ParameterTypeRequiredDescription
requeststringREQUIREDMust be `overview`

πŸͺ™ Usage & Credits

This endpoint consumes 10 credits per request against your active API tier.

Response

json
{
  "totalStaked": "float",
  "totalInstantStaked": "float",
  "totalRewardsPaid": "float",
  "totalReleased": "float",
  "stakerCount": "integer",
  "stakes6m": "integer",
  "stakes1y": "integer",
  "stakes2y": "integer",
  "stakes3y": "integer",
  "stakes4y": "integer",
  "stakes5y": "integer",
  "stakesLiquid": "integer",
  "stakes6mInstant": "integer",
  "stakes1yInstant": "integer",
  "stakes2yInstant": "integer",
  "stakes3yInstant": "integer",
  "stakes4yInstant": "integer",
  "stakes5yInstant": "integer",
  "stakesInstant": "integer",
  "stakesDaily": "integer",
  "lastUpdated": "integer"
}

Staking Activity

GET/v1/stake?request=activity

Paginated history of staking events (stakes, releases, updates).

Parameters

ParameterTypeRequiredDescription
requeststringREQUIREDMust be `activity`
limitintoptionalResults (1–100)
offsetintoptionalOffset (max 10000)
walletstringoptionalFilter by wallet
typestringoptionalEvent type: stake, instant_stake, release_instant, release_liquid, etc.

πŸͺ™ Usage & Credits

This endpoint consumes 10 credits per request against your active API tier.

Response

json
{
  "found": "integer",
  "activities": [
    {
      "hash": "string",
      "type": "string",
      "wallet": "string *",
      "amount": "float *",
      "rewardAmount": "float *",
      "term": "string *",
      "bumpId": "integer *",
      "oldWallet": "string *",
      "newWallet": "string *",
      "totalReleased": "float *",
      "startTime": "integer",
      "blockHeight": "integer"
    }
  ]
}

Wallet Stakes

GET/v1/stake?request=wallet

Stake positions for a specific wallet address.

Parameters

ParameterTypeRequiredDescription
requeststringREQUIREDMust be `wallet`
addressstringREQUIREDWallet address
limitintoptionalResults (1–200)
offsetintoptionalOffset (max 10000)
statusstringoptionalFilter: active, released, all

πŸͺ™ Usage & Credits

This endpoint consumes 10 credits per request against your active API tier.

Response

json
{
  "found": "integer",
  "stakes": [
    {
      "bumpId": "integer",
      "wallet": "string",
      "amount": "float",
      "reward": "float *",
      "term": "string",
      "stakeType": "string",
      "startTime": "integer",
      "endTime": "integer *",
      "status": "string"
    }
  ]
}

Errors

StatusCondition
400Missing address parameter

All Stakes (Global)

GET/v1/stake?request=stakes

Query stake positions across all wallets with filtering.

Parameters

ParameterTypeRequiredDescription
requeststringREQUIREDMust be `stakes`
limitintoptionalResults (1–200)
offsetintoptionalOffset (max 10000)
addressstringoptionalFilter by wallet
statusstringoptionalFilter: active, released
termstringoptionalFilter: 6_months, 1_year, 2_years ... 5_years, liquid
stakeTypestringoptionalFilter: daily or instant

πŸͺ™ Usage & Credits

This endpoint consumes 10 credits per request against your active API tier.

Response

json
{
  "found": "integer",
  "stakes": [
    {
      "bumpId": "integer",
      "wallet": "string",
      "amount": "float",
      "reward": "float *",
      "term": "string",
      "stakeType": "string",
      "startTime": "integer",
      "endTime": "integer *",
      "status": "string"
    }
  ]
}