> ## 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 wallet group market making rewards history

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


Return each epoch from Epoch 1 to last completed epoch.


`GET /v1/public/market_making_rewards/group_rewards_history`




## OpenAPI

````yaml orderly.openapi get /v1/public/market_making_rewards/group_rewards_history
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/public/market_making_rewards/group_rewards_history:
    get:
      tags:
        - public
      summary: Get wallet group market making rewards history
      description: |
        **Limit: 10 requests per 1 second per IP address**


        Return each epoch from Epoch 1 to last completed epoch.


        `GET /v1/public/market_making_rewards/group_rewards_history`
      parameters:
        - name: address
          in: query
          description: ''
          required: true
          example: ''
          schema:
            type: string
        - name: symbol
          in: query
          description: ''
          required: false
          example: ''
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetWalletGroupMarketMakingRewardsHistory'
      deprecated: false
components:
  schemas:
    GetWalletGroupMarketMakingRewardsHistory:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          properties:
            data:
              type: object
              properties:
                group_lifetime_mm_rewards_order:
                  type: number
                  example: 3378176.44849794
                  description: >-
                    Sum of all confirmed $ORDER market making rewards on the
                    wallet group level
                group_lifetime_mm_rewards_escrow:
                  type: number
                  example: 0
                  description: >-
                    Sum of all confirmed es$ORDER market making rewards on the
                    wallet group level
                rows:
                  type: array
                  items:
                    type: object
                    properties:
                      epoch_id:
                        type: number
                        example: 2
                      epoch_avg_staked:
                        type: number
                        example: 0
                        description: >-
                          The epoch average staked balance used to calculate
                          market making rewards for this wallet group
                      max_reward_amount:
                        type: number
                        example: 200000
                        description: The maximum rewards distributable in this epoch
                      epoch_token:
                        type: string
                        example: ORDER
                        description: >-
                          Type of reward distributed for this epoch ($ORDER or
                          es$ORDER)
                      reward_status:
                        type: string
                        example: PENDING
                        description: >
                          - `Pending` = During the waiting period after the
                          epoch has ended

                          - `Confirmed` = When the epoch rewards have been
                          finalized and ready for users to claim
                      total_reward:
                        type: number
                        example: 10
                        description: >
                          The amount of rewards distributed to this wallet group
                          in this epoch


                          Note: This value can be updated when reward_status ==
                          pending
    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

````