> ## 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 revenue buyback

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

Order by batch_id. Display the amount after the batch is claimable.

`GET /v1/staking/valor2/revenue_buyback`




## OpenAPI

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

        Order by batch_id. Display the amount after the batch is claimable.

        `GET /v1/staking/valor2/revenue_buyback`
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetValor2RevenueBuybackResponse'
      deprecated: false
components:
  schemas:
    GetValor2RevenueBuybackResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          properties:
            data:
              type: array
              description: >-
                Order by batch_id. Display the amount after the batch is
                claimable.
              items:
                type: object
                properties:
                  batch_id:
                    type: number
                    example: 13
                  usdc_revenue:
                    type: number
                    example: 19090
                  esorder_amount:
                    type: number
                    example: 90000000
    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

````