> ## Documentation Index
> Fetch the complete documentation index at: https://staging-docs.orderly.network/llms.txt
> Use this file to discover all available pages before exploring further.

# Get one order tag for a broker

> `GET /v1/public/broker/order_enum?broker_id={broker_id}&enum_id={enum_id}`

Get one custom trading fee configuration owned by `broker_id`. The response does not include usage statistics.

The returned `enum_id` is unprefixed. To submit a new enum-tagged order, construct `enum:<broker_id>:<enum_id>`.




## OpenAPI

````yaml orderly.openapi get /v1/public/broker/order_enum
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/broker/order_enum:
    get:
      tags:
        - public
      summary: Get one order tag for a broker
      description: >
        `GET
        /v1/public/broker/order_enum?broker_id={broker_id}&enum_id={enum_id}`


        Get one custom trading fee configuration owned by `broker_id`. The
        response does not include usage statistics.


        The returned `enum_id` is unprefixed. To submit a new enum-tagged order,
        construct `enum:<broker_id>:<enum_id>`.
      parameters:
        - name: broker_id
          in: query
          description: Broker that owns the enum configuration
          required: true
          schema:
            type: string
            minLength: 1
            maxLength: 64
            pattern: ^[^:]+$
        - name: enum_id
          in: query
          description: Unprefixed enum ID
          required: true
          schema:
            type: string
            minLength: 1
            maxLength: 36
            pattern: ^[A-Z0-9_]+$
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetOrderEnumResponse'
components:
  schemas:
    GetOrderEnumResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          properties:
            data:
              $ref: '#/components/schemas/OrderEnum'
    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
    OrderEnum:
      type: object
      properties:
        enum_id:
          type: string
          minLength: 1
          maxLength: 36
          pattern: ^[A-Z0-9_]+$
          description: >-
            Unprefixed enum ID. Combine it with the enum owner's broker ID as
            `enum:<owner_broker_id>:<enum_id>` when submitting a new order.
          example: GRID_PRO
        name:
          type: string
          example: Grid Pro
        description:
          type: string
          example: Grid strategy orders
        status:
          type: string
          enum:
            - active
            - archived
          example: active
        default_fee_rate:
          type: number
          minimum: 0.00001
          maximum: 0.01
          multipleOf: 0.00001
          description: >-
            Default enum fee rate used when the order symbol has no pair
            override.
          example: 0.005
        pair_overrides:
          type: object
          description: Symbol-specific enum fee rates that override `default_fee_rate`.
          additionalProperties:
            type: number
            minimum: 0.00001
            maximum: 0.01
            multipleOf: 0.00001
          example:
            PERP_BTC_USDC: 0.003
        created_time:
          type: number
          example: 1710300000000
        updated_time:
          type: number
          example: 1710300000000

````