> ## 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 builder fee tier information

> **Limit 10 requests per 60 seconds**

`GET /v1/broker/broker_info`

Get builder's fee tier information including staking balance, trading volume, and fee rates. Fee rate fields returned by this endpoint are in bps.




## OpenAPI

````yaml orderly.openapi get /v1/broker/broker_info
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/broker/broker_info:
    get:
      tags:
        - private
      summary: Get builder fee tier information
      description: >
        **Limit 10 requests per 60 seconds**


        `GET /v1/broker/broker_info`


        Get builder's fee tier information including staking balance, trading
        volume, and fee rates. Fee rate fields returned by this endpoint are in
        bps.
      parameters:
        - name: orderly-timestamp
          in: header
          description: ''
          required: true
          example: '1649920583000'
          schema:
            type: string
        - name: orderly-account-id
          in: header
          description: ''
          required: true
          example: '0x0f29bfb4c1bc9fea3f3be46bab6d795e22a6272354b136fde05f6b80cfcad546'
          schema:
            type: string
        - name: orderly-key
          in: header
          description: ''
          required: true
          example: ed25519:8tm7dnKYkSc3FzgPuJaw1wztr79eeZpN35nHW5pL5XhX
          schema:
            type: string
        - name: orderly-signature
          in: header
          description: ''
          required: true
          example: >-
            dG4bkKiqG0dUYLzViRZkvbI6Sy239JxAdNMIBxFZ4w030Jofr0ORV06GHtvXZkaZaWUXE+XAU3fnzKN/5fDeBQ==
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetBrokerInfoResponse'
      deprecated: false
components:
  schemas:
    GetBrokerInfoResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          required:
            - data
          properties:
            data:
              type: object
              properties:
                broker_id:
                  type: string
                  description: broker_id
                  example: orderlydemo
                total_staked_balance:
                  type: number
                  description: staking_volume
                  example: 300730.5454
                volume_last_30_days:
                  type: number
                  description: trading_volume
                  example: 300730.5454
                type:
                  type: string
                  description: type_final
                  example: DIAMOND
                base_maker_fee_rate:
                  type: number
                  description: Base maker fee rate in bps.
                  example: 0
                base_taker_fee_rate:
                  type: number
                  description: Base taker fee rate in bps.
                  example: 1
                base_rwa_maker_fee_rate:
                  type: number
                  description: Base RWA maker fee rate in bps.
                  example: 0
                base_rwa_taker_fee_rate:
                  type: number
                  description: Base RWA taker fee rate in bps.
                  example: 1
                updated_time:
                  type: number
                  description: updated_time
                  example: 1702989203989
    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

````