> ## 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 user's merits

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

`GET /v1/client/points`




## OpenAPI

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

        `GET /v1/client/points`
      parameters:
        - name: address
          in: query
          description: ''
          required: true
          example: sample_address
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetPointsResponse'
      deprecated: false
components:
  schemas:
    GetPointsResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          properties:
            data:
              type: object
              properties:
                total_points:
                  type: number
                  example: 547
                global_rank:
                  type: number
                  example: 17
                tier:
                  type: number
                  example: 3
                current_epoch_points:
                  type: number
                  example: 200
                current_epoch_rank:
                  type: number
                  example: 3
                rows:
                  type: array
                  items:
                    type: object
                    properties:
                      rank:
                        type: number
                        example: 1
                      epoch_id:
                        type: number
                        example: 1
                      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

````