Bloomberg AIM Broker Strategies API

Query available broker strategies and parameters

Operations 2

POST /request/blp/emapisvc/GetBrokerStrategiesWithAssetClass Get Broker Strategies #
POST /request/blp/emapisvc/GetBrokerStrategyInfoWithAssetClass Get Broker Strategy Details #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/bloomberg-aim-broker-strategies-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

bloomberg-aim-broker-strategies-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Bloomberg EMSX Broker Strategies API
  description: The Execution Management System API allows developers to manage and automate trading for equities, futures, and options using an event-driven model with both subscription and request-response paradigms. EMSX provides order and route management, broker integration, and fill tracking via the BLPAPI protocol. This spec models the request-response operations as REST-like endpoints.
  version: 1.0.0
  contact:
    name: Bloomberg Developer Support
    url: https://emsx-api-doc.readthedocs.io/
  license:
    name: Proprietary
    url: https://www.bloomberg.com/notices/tos/
  termsOfService: https://www.bloomberg.com/notices/tos/
servers:
- url: https://localhost:3000
  description: Bloomberg EMSX service via BLPAPI HTTP bridge
security:
- bearerAuth: []
tags:
- name: Broker Strategies
  description: Query available broker strategies and parameters
paths:
  /request/blp/emapisvc/GetBrokerStrategiesWithAssetClass:
    post:
      operationId: getBrokerStrategies
      summary: Get Broker Strategies
      description: Retrieves available trading strategies for a specific broker and asset class combination.
      tags:
      - Broker Strategies
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GetBrokerStrategiesRequest'
            examples:
              GetbrokerstrategiesRequestExample:
                summary: Default getBrokerStrategies request
                x-microcks-default: true
                value:
                  EMSX_BROKER: example_value
                  EMSX_ASSET_CLASS: EQTY
      responses:
        '200':
          description: Available broker strategies
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetBrokerStrategiesResponse'
              examples:
                Getbrokerstrategies200Example:
                  summary: Default getBrokerStrategies 200 response
                  x-microcks-default: true
                  value:
                    strategies:
                    - example_value
        '400':
          $ref: '#/components/responses/BadRequest'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /request/blp/emapisvc/GetBrokerStrategyInfoWithAssetClass:
    post:
      operationId: getBrokerStrategyInfo
      summary: Get Broker Strategy Details
      description: Retrieves detailed information about a specific broker strategy including its parameters and constraints.
      tags:
      - Broker Strategies
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GetBrokerStrategyInfoRequest'
            examples:
              GetbrokerstrategyinfoRequestExample:
                summary: Default getBrokerStrategyInfo request
                x-microcks-default: true
                value:
                  EMSX_BROKER: example_value
                  EMSX_STRATEGY: example_value
                  EMSX_ASSET_CLASS: EQTY
      responses:
        '200':
          description: Strategy details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetBrokerStrategyInfoResponse'
              examples:
                Getbrokerstrategyinfo200Example:
                  summary: Default getBrokerStrategyInfo 200 response
                  x-microcks-default: true
                  value:
                    strategyInfo:
                      name: Example Title
                      description: A sample description.
                      parameters:
                      - name: Example Title
                        description: A sample description.
                        type: example_value
                        required: true
                        allowedValues: {}
        '400':
          $ref: '#/components/responses/BadRequest'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    GetBrokerStrategyInfoResponse:
      type: object
      properties:
        strategyInfo:
          type: object
          properties:
            name:
              type: string
            description:
              type: string
            parameters:
              type: array
              items:
                type: object
                properties:
                  name:
                    type: string
                  description:
                    type: string
                  type:
                    type: string
                  required:
                    type: boolean
                  allowedValues:
                    type: array
                    items:
                      type: string
          example: example_value
    Error:
      type: object
      properties:
        STATUS:
          type: integer
          example: 10
        MESSAGE:
          type: string
          example: example_value
        REASON:
          type: string
          example: example_value
    GetBrokerStrategyInfoRequest:
      type: object
      required:
      - EMSX_BROKER
      - EMSX_STRATEGY
      - EMSX_ASSET_CLASS
      properties:
        EMSX_BROKER:
          type: string
          example: example_value
        EMSX_STRATEGY:
          type: string
          example: example_value
        EMSX_ASSET_CLASS:
          type: string
          enum:
          - EQTY
          - OPT
          - FUT
          example: EQTY
    GetBrokerStrategiesResponse:
      type: object
      properties:
        strategies:
          type: array
          items:
            type: string
          description: List of available strategy names
          example: []
    GetBrokerStrategiesRequest:
      type: object
      required:
      - EMSX_BROKER
      - EMSX_ASSET_CLASS
      properties:
        EMSX_BROKER:
          type: string
          description: Broker code
          example: example_value
        EMSX_ASSET_CLASS:
          type: string
          description: Asset class
          enum:
          - EQTY
          - OPT
          - FUT
          example: EQTY
  responses:
    BadRequest:
      description: Invalid request parameters or business rule violation
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Bloomberg-issued JWT credential for EMSX access