> ## 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 referee list

> **Limit: 10 requests per second**

`GET /v1/referral/multi_level/referee_list`

Returns the list of direct referees (those who used your code). Includes both multilevel and legacy referral codes.




## OpenAPI

````yaml orderly.openapi get /v1/referral/multi_level/referee_list
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/referral/multi_level/referee_list:
    get:
      tags:
        - private
      summary: Get referee list
      description: >
        **Limit: 10 requests per second**


        `GET /v1/referral/multi_level/referee_list`


        Returns the list of direct referees (those who used your code). Includes
        both multilevel and legacy referral codes.
      parameters:
        - $ref: '#/components/parameters/orderly_timestamp'
        - $ref: '#/components/parameters/orderly_account_id'
        - $ref: '#/components/parameters/orderly_key'
        - $ref: '#/components/parameters/orderly_signature'
        - name: page
          in: query
          description: Page number
          required: false
          example: 1
          schema:
            type: integer
        - name: size
          in: query
          description: Page size
          required: false
          example: 25
          schema:
            type: integer
        - name: address
          in: query
          description: Filter by address
          required: false
          example: ''
          schema:
            type: string
        - name: sort_by
          in: query
          description: >-
            Sort by field: code_binding_time, referral_rebate_rate,
            referee_rebate_rate, direct_invites, indirect_invites,
            direct_volume, indirect_volume
          required: false
          example: ''
          schema:
            type: string
        - name: sort_order
          in: query
          description: 'Sort order: ascending, descending'
          required: false
          example: ''
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetRefereeListResponse'
      deprecated: false
components:
  parameters:
    orderly_timestamp:
      name: orderly-timestamp
      in: header
      description: Timestamp of the signed request in milliseconds.
      required: true
      style: simple
      explode: false
      schema:
        type: string
      example: '1649920583000'
    orderly_account_id:
      name: orderly-account-id
      in: header
      description: Account ID of the authenticated account.
      required: true
      style: simple
      explode: false
      schema:
        type: string
      example: 6.858456565150415e+75
    orderly_key:
      name: orderly-key
      in: header
      description: Public orderly key used to sign the request.
      required: true
      style: simple
      explode: false
      schema:
        type: string
      example: ed25519:8tm7dnKYkSc3FzgPuJaw1wztr79eeZpN35nHW5pL5XhX
    orderly_signature:
      name: orderly-signature
      in: header
      description: Signature of the request payload generated with the orderly key.
      required: true
      style: simple
      explode: false
      schema:
        type: string
      example: >-
        dG4bkKiqG0dUYLzViRZkvbI6Sy239JxAdNMIBxFZ4w030Jofr0ORV06GHtvXZkaZaWUXE+XAU3fnzKN/5fDeBQ==
  schemas:
    GetRefereeListResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          properties:
            data:
              type: object
              properties:
                rows:
                  type: array
                  items:
                    type: object
                    properties:
                      address:
                        type: string
                      account_id:
                        type: string
                      code_binding_time:
                        type: number
                      bind_type:
                        type: string
                        enum:
                          - multi_level
                          - legacy
                      bind_code:
                        type: string
                      referral_rebate_rate:
                        type: number
                      referee_rebate_rate:
                        type: number
                      is_default_rate:
                        type: boolean
                      direct_invites:
                        type: number
                      indirect_invites:
                        type: number
                      direct_volume:
                        type: number
                      indirect_volume:
                        type: number
                      direct_rebate:
                        type: number
                      indirect_rebate:
                        type: number
                      direct_bonus_rebate:
                        type: number
                meta: d6fb8df0-b615-4bc6-9922-9b2868dcdbc1
    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

````