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

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

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

Returns statistics for builders on Orderly. Use `broker_id` to limit the response to a single builder.




## OpenAPI

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

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


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


        Returns statistics for builders on Orderly. Use `broker_id` to limit the
        response to a single builder.
      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/BrokerStatsResponse'
      deprecated: false
components:
  schemas:
    BrokerStatsResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          required:
            - data
          properties:
            data:
              type: object
              required:
                - rows
              properties:
                rows:
                  description: Statistics for the requested builders.
                  type: array
                  items:
                    type: object
                    required:
                      - connected_user
                    properties:
                      connected_user:
                        description: Number of connected users for the builder.
                        type: integer
                        example: '274148'
    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

````