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

# Check if address is registered

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

`GET /v1/get_broker`

Checks whether an address is already registered and returns the associated builder IDs.




## OpenAPI

````yaml orderly.openapi get /v1/get_broker
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/get_broker:
    get:
      tags:
        - public
      summary: Check if address is registered
      description: >
        **Limit: 10 requests per 1 second per IP address**


        `GET /v1/get_broker`


        Checks whether an address is already registered and returns the
        associated builder IDs.
      parameters:
        - name: address
          in: query
          description: Wallet address to check.
          required: true
          example: ''
          schema:
            type: string
        - name: chain_type
          in: query
          description: '`EVM` or `SOL`'
          required: false
          example: EVM
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetBrokerResponse'
      deprecated: false
components:
  schemas:
    GetBrokerResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          required:
            - data
          properties:
            data:
              type: object
              properties:
                broker_id:
                  description: Broker IDs associated with the queried wallet address.
                  type: array
                  items:
                    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

````