> ## 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 valor2 pool info

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


`GET /v1/staking/valor2/pool_info`




## OpenAPI

````yaml orderly.openapi get /v1/staking/valor2/pool_info
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/valor2/pool_info:
    get:
      tags:
        - public
      summary: Get valor2 pool info
      description: |
        **Limit: 10 requests per 1 second per IP address**


        `GET /v1/staking/valor2/pool_info`
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetValor2PoolInfoResponse'
      deprecated: false
components:
  schemas:
    GetValor2PoolInfoResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          properties:
            data:
              type: object
              properties:
                revenue_rate:
                  type: number
                  example: 0.6
                valor_price_esorder:
                  type: number
                  example: 0.018128737338881
                treasury_pool_value:
                  type: number
                  description: esorder
                  example: 741510.854264
                est_treasury_inflow:
                  type: number
                  description: total accumulated USDC pending buyback (usdc)
                  example: 1502.490346
                order_price_usdc:
                  type: number
                  example: 0.2
                total_redeemed_amount:
                  type: number
                  example: 1594502.182669
                current_batch_id:
                  type: number
                  example: 13
                next_settlement_date:
                  type: string
                  example: '2025-10-06'
    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

````