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

# Search MT5 brokers

> Search for MT5 broker servers by company name. Returns server names and IP addresses.
Use the returned `name` as the `server_name` field when creating an account.




## OpenAPI

````yaml /openapi-spec/easierprop.yaml get /api/brokers/search
openapi: 3.0.3
info:
  title: Easier Prop REST API
  version: 2.1.0
  description: >
    MT5 Trading Infrastructure API. Manage multiple broker accounts, execute
    trades, stream market data, and administer API keys, usage snapshots, and
    billing terms.


    **Client API** endpoints live under `/api` and require an `X-API-Key`
    header.

    **Admin API** endpoints live under `/admin` and accept either a JWT
    `Authorization: Bearer <jwt>` (obtained via `/admin/login`) or the same
    `X-API-Key` header used by client endpoints.


    Admin user provisioning is read-only via REST: `GET /admin/admins` lists
    admins, but creation, update, and deletion are performed out-of-band (DB /
    ops tooling). Bootstrap a brand-new deployment with `POST /admin/seed` while
    no superadmin exists.
servers:
  - url: https://api.easierprop.com
    description: Production
security: []
tags:
  - name: Admin
    description: Authentication, API key management, and admin user CRUD
  - name: Accounts
    description: Register and manage MT5 broker accounts
  - name: Sessions
    description: Control broker connections
  - name: Trading
    description: Place, modify, and close orders
  - name: Account Info
    description: Balance, equity, margin, and statistics
  - name: Market Data
    description: Symbols, quotes, OHLC history, and trade sessions
  - name: Expert Advisors
    description: Upload, run, stop, and monitor MQL5 Expert Advisors on your accounts
  - name: Enhanced
    description: >-
      Portfolio, risk, performance, copy-trade, hedge, breakeven, close-all, lot
      calculator, and position details
  - name: Extended
    description: >-
      Change password, server timezone, symbol sessions, closed positions,
      mails, tick value, equity stats, and more
paths:
  /api/brokers/search:
    get:
      tags:
        - Extended
      summary: Search MT5 brokers
      description: >
        Search for MT5 broker servers by company name. Returns server names and
        IP addresses.

        Use the returned `name` as the `server_name` field when creating an
        account.
      operationId: brokerSearch
      parameters:
        - name: company
          in: query
          required: true
          schema:
            type: string
          description: Company name to search for
          example: pure
      responses:
        '200':
          description: Broker search results
          content:
            application/json:
              schema:
                type: object
                properties:
                  ok:
                    type: boolean
                    example: true
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        companyName:
                          type: string
                          example: Pure M Global Limited
                        results:
                          type: array
                          items:
                            type: object
                            properties:
                              name:
                                type: string
                                description: Server name to use in `server_name` field
                                example: PureMGlobal-MT5
                              access:
                                type: array
                                items:
                                  type: string
                                description: List of server IP addresses with ports
                                example:
                                  - 193.30.23.21:443
                                  - 36.255.76.101:443
      security: []

````