> ## 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 merits leaderboard

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

`GET /v1/public/points/leaderboard`




## OpenAPI

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

        `GET /v1/public/points/leaderboard`
      parameters:
        - name: start_r
          in: query
          description: Starting rank you wish to query
          required: false
          example: ''
          schema:
            type: integer
        - name: end_r
          in: query
          description: Ending rank you wish to query
          required: false
          example: ''
          schema:
            type: integer
        - name: epoch_id
          in: query
          description: the epoch for which you want to check the leaderboard
          required: false
          example: ''
          schema:
            type: integer
        - name: page
          in: query
          description: start from 1
          required: false
          example: ''
          schema:
            type: integer
        - name: size
          in: query
          description: ''
          required: false
          example: ''
          schema:
            type: integer
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetPointsLeaderboardResponse'
      deprecated: false
components:
  schemas:
    GetPointsLeaderboardResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          properties:
            data:
              type: object
              properties:
                epoch_id:
                  type: number
                  example: 1
                meta:
                  $ref: '#/components/schemas/PaginationMeta'
                rows:
                  type: array
                  items:
                    type: object
                    properties:
                      rank:
                        type: number
                        example: 1
                      tier:
                        type: number
                        example: 1
                      address:
                        type: string
                        example: '0xfcc17f2b240380d56f0615e8f654e4ae3cee8957'
                      points:
                        type: number
                        example: 15000
                      previous_rank:
                        type: number
                        example: 4
    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
    PaginationMeta:
      required:
        - current_page
        - records_per_page
        - total
      type: object
      properties:
        total:
          type: integer
          example: 9
        records_per_page:
          type: integer
          example: 25
        current_page:
          type: integer
          example: 1
          description: start from 1

````