> ## 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 valor redeem info

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


`GET /v1/staking/valor/redeem`




## OpenAPI

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


        `GET /v1/staking/valor/redeem`
      parameters:
        - name: address
          in: query
          description: ''
          required: true
          example: ''
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetValorRedeemInfoResponse'
      deprecated: false
components:
  schemas:
    GetValorRedeemInfoResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          properties:
            data:
              type: object
              properties:
                redeeming_valor_amount:
                  type: number
                  example: 1000
                chain_details:
                  type: array
                  items:
                    type: object
                    properties:
                      chain_id:
                        type: number
                        example: 1
                      pending_usdc:
                        type: number
                        example: 5000
                      available_usdc:
                        type: number
                        example: 1500
    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

````