> ## Documentation Index
> Fetch the complete documentation index at: https://orderly.network/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Get staking overview

> **Limit: 10 requests per 1 second per IP address**


`GET /v1/staking/overview`




## OpenAPI

````yaml orderly.openapi get /v1/staking/overview
openapi: 3.0.1
info:
  title: EVM
  description: ''
  version: 1.0.0
servers:
  - url: https://api.orderly.org
    description: Mainnet
  - url: https://testnet-api.orderly.org
    description: Testnet
security: []
tags:
  - name: public
  - name: private
paths:
  /v1/staking/overview:
    get:
      tags:
        - public
      summary: Get staking overview
      description: |
        **Limit: 10 requests per 1 second per IP address**


        `GET /v1/staking/overview`
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetStakingOverviewResponse'
      deprecated: false
components:
  schemas:
    GetStakingOverviewResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          properties:
            data:
              type: object
              properties:
                total_stake:
                  type: number
                  example: 845599630.06
                rows:
                  type: array
                  items:
                    type: object
                    properties:
                      date:
                        type: string
                        example: '2023-05-20'
                      usd_reward:
                        type: number
                        example: 1268.34
                      total_staked_usd:
                        type: number
                        example: 117654321.99
    BasicResponse:
      required:
        - success
      type: object
      properties:
        success:
          description: Indicates whether the request was successful.
          type: boolean
          example: true
        timestamp:
          description: Server timestamp in milliseconds.
          type: integer
          example: 1702989203989

````