> ## 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 parameters of each epoch

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

`GET /v1/public/market_making_rewards/epoch_info`




## OpenAPI

````yaml orderly.openapi get /v1/public/market_making_rewards/epoch_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/public/market_making_rewards/epoch_info:
    get:
      tags:
        - public
      summary: Get parameters of each epoch
      description: |
        **Limit: 10 requests per 1 second per IP address**

        `GET /v1/public/market_making_rewards/epoch_info`
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/GetParameterOfEachMMEpochForAllMMEpochsResponse
      deprecated: false
components:
  schemas:
    GetParameterOfEachMMEpochForAllMMEpochsResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          properties:
            data:
              type: object
              properties:
                current_epoch:
                  type: number
                  example: 23
                  description: The current on-going epoch for market making rewards
                rows:
                  type: array
                  items:
                    type: object
                    properties:
                      epoch_id:
                        type: number
                        example: 2
                      start_time:
                        type: number
                        example: 1711411200000
                        description: epoch start timestamp
                      end_time:
                        type: number
                        example: 1711497600000
                        description: epoch end timestamp
                      epoch_token:
                        type: string
                        example: ORDER
                        description: >-
                          Type of reward distributed for this epoch ($ORDER or
                          es$ORDER)
                      max_reward_amount:
                        type: number
                        example: 200000
                        description: The maximum rewards distributable in this epoch
    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

````