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

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

`GET /v1/public/broker/name?broker_id={broker_id}`

Returns the list of builders currently onboarded to Orderly. Use `broker_id` to retrieve a single builder entry.




## OpenAPI

````yaml orderly.openapi get /v1/public/broker/name
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/name:
    get:
      tags:
        - public
      summary: Get builder list
      description: >

        **Limit: 10 requests per 1 second per IP address**


        `GET /v1/public/broker/name?broker_id={broker_id}`


        Returns the list of builders currently onboarded to Orderly. Use
        `broker_id` to retrieve a single builder entry.
      parameters:
        - name: broker_id
          in: query
          description: Filter results to a specific broker ID.
          required: false
          example: test_broker
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BrokerListResponse'
      deprecated: false
components:
  schemas:
    BrokerListResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          required:
            - data
          properties:
            data:
              type: object
              required:
                - rows
              properties:
                rows:
                  description: Builders that match the requested filters.
                  type: array
                  items:
                    type: object
                    required:
                      - broker_id
                      - broker_name
                    properties:
                      broker_id:
                        description: Unique broker ID for the builder.
                        type: string
                        example: woofi_pro
                      broker_name:
                        description: Display name of the builder.
                        type: string
                        example: WOOFi Pro
    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

````