GMX

GMX Staking API

The Staking API from GMX — 1 operation(s) for staking.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/gmx-staking-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

gmx-staking-api-openapi.yml Raw ↑
openapi: 3.0.0
info:
  title: '@gmx-io/gmx-public-api Allowances Staking API'
  version: 1.0.0
  license:
    name: Copyright
  contact: {}
servers:
- url: /v1
tags:
- name: Staking
paths:
  /staking/power:
    get:
      operationId: GetStakingPower
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StakingPowerResponse'
        '400':
          description: Bad Request - Invalid address
        '500':
          description: Internal Server Error
      tags:
      - Staking
      security: []
      parameters:
      - in: query
        name: address
        required: true
        schema:
          type: string
components:
  schemas:
    BigIntToString_StakingPowerData_:
      properties:
        loyaltyTrackingStart:
          type: number
          format: double
        powerAccrualStart:
          type: number
          format: double
        treasuryGmxBalance:
          type: string
        projectedRewardShare:
          type: string
        powerResetCount:
          type: number
          format: double
        lastPowerResetAt:
          type: number
          format: double
        loyaltyRatio:
          type: number
          format: double
        currentStaked:
          type: string
        historicalMaxStaked:
          type: string
        userSharePercent:
          type: number
          format: double
        totalNetworkPower:
          type: string
        cumulativePower:
          type: string
      required:
      - loyaltyTrackingStart
      - powerAccrualStart
      - treasuryGmxBalance
      - projectedRewardShare
      - powerResetCount
      - lastPowerResetAt
      - loyaltyRatio
      - currentStaked
      - historicalMaxStaked
      - userSharePercent
      - totalNetworkPower
      - cumulativePower
      type: object
      description: 'Recursively converts bigint types to string types in a type definition.

        Handles primitives, objects, arrays, and nested structures.

        Preserves Date type as-is.'
    StakingPowerResponse:
      $ref: '#/components/schemas/BigIntToString_StakingPowerData_'