> ## 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 number of merits for distribution

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

`GET /v1/public/points/epoch`

Retrieve the number of merits for past epochs and current epoch




## OpenAPI

````yaml orderly.openapi get /v1/public/points/epoch
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/points/epoch:
    get:
      tags:
        - public
      summary: Get number of merits for distribution
      description: |
        **Limit: 10 requests per 1 second per user per IP address**

        `GET /v1/public/points/epoch`

        Retrieve the number of merits for past epochs and current epoch
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetEpochPointsResponse'
      deprecated: false
components:
  schemas:
    GetEpochPointsResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          properties:
            data:
              type: object
              properties:
                current_total_epoch_points:
                  type: number
                  example: 547
                current_epoch_points:
                  type: number
                  example: 17
                current_epoch_id:
                  type: number
                  example: 3
                total_traders:
                  type: number
                  example: 200
                rows:
                  type: array
                  items:
                    type: object
                    properties:
                      rank:
                        type: number
                        example: 1
                      epoch_id:
                        type: number
                        example: 1
                      total_points:
                        type: number
                        example: 15000
    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

````