> ## 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 single order tag with stats

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

`GET /v1/broker/order_enum/{enum_id}`

Get one custom trading fee configuration owned by the authenticated broker, including usage statistics aggregated across every executing broker.

Common error: `-1202` means the enum was not found for the authenticated owner.




## OpenAPI

````yaml orderly.openapi get /v1/broker/order_enum/{enum_id}
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/order_enum/{enum_id}:
    get:
      tags:
        - private
      summary: Get single order tag with stats
      description: >
        **Limit: 10 requests per 1 second**


        `GET /v1/broker/order_enum/{enum_id}`


        Get one custom trading fee configuration owned by the authenticated
        broker, including usage statistics aggregated across every executing
        broker.


        Common error: `-1202` means the enum was not found for the authenticated
        owner.
      parameters:
        - name: enum_id
          in: path
          description: Unprefixed enum ID owned by the authenticated broker
          required: true
          schema:
            type: string
            minLength: 1
            maxLength: 36
            pattern: ^[A-Z0-9_]+$
        - $ref: '#/components/parameters/orderly_timestamp'
        - $ref: '#/components/parameters/orderly_account_id'
        - $ref: '#/components/parameters/orderly_key'
        - $ref: '#/components/parameters/orderly_signature'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetOrderEnumWithStatsResponse'
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:
    GetOrderEnumWithStatsResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          properties:
            data:
              $ref: '#/components/schemas/OrderEnumWithStats'
    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
    OrderEnumWithStats:
      allOf:
        - $ref: '#/components/schemas/OrderEnum'
        - type: object
          properties:
            usage_stats:
              type: object
              description: >-
                Usage aggregated by `{fee-owning broker, enum_id}` across every
                executing broker. These totals do not split activity by
                executing broker.
              properties:
                total_orders:
                  type: number
                  description: >-
                    Total orders attributed to this owner and enum ID across
                    every executing broker.
                  example: 12543
                total_volume:
                  type: string
                  description: >-
                    Total attributed execution volume across every executing
                    broker.
                  example: '1234567.89'
                total_fees_collected:
                  type: string
                  description: Total custom trading fees received by the fee-owning broker.
                  example: '6172.84'
    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

````