> ## 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 stage rankings

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

`GET /v1/public/points/rankings`

Returns the rankings for a specific stage.

Note: Need to aggregate the point data from all sub accounts with the same address.




## OpenAPI

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


        `GET /v1/public/points/rankings`


        Returns the rankings for a specific stage.


        Note: Need to aggregate the point data from all sub accounts with the
        same address.
      parameters:
        - name: stage
          in: query
          description: Filter by Stage
          required: true
          schema:
            type: number
        - name: page
          in: query
          description: Page number
          schema:
            type: number
            default: 1
        - name: size
          in: query
          description: Items per page
          schema:
            type: number
            default: 20
        - name: period
          in: query
          description: Filter by period (`all_time`/`last_week`/`this_week`)
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetStageRankingsResponse'
      deprecated: false
components:
  schemas:
    GetStageRankingsResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          properties:
            data:
              type: object
              properties:
                rows:
                  type: array
                  items:
                    type: object
                    properties:
                      rank:
                        type: number
                        example: 1
                      address:
                        type: string
                        example: 0x123...
                      total_points:
                        type: number
                        example: 1000
                meta:
                  type: object
                  properties:
                    total:
                      type: number
                      example: 50
                    records_per_page:
                      type: number
                      example: 20
                    current_page:
                      type: number
                      example: 1
    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

````