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.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/bloomberg-aim-fills-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
openapi: 3.2.0
info:
title: Bloomberg EMSX Fills 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: Fills
description: Track order and route fills
paths:
/request/blp/emapisvc/GetFills:
post:
operationId: getFills
summary: Get Fills
description: Retrieves fill information for orders and routes. Fills represent partial or complete executions of routes.
tags:
- Fills
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/GetFillsRequest'
examples:
GetfillsRequestExample:
summary: Default getFills request
x-microcks-default: true
value:
scope: PRIVATE
fromDateTime: '2026-01-15T10:30:00Z'
responses:
'200':
description: List of fills
content:
application/json:
schema:
$ref: '#/components/schemas/GetFillsResponse'
examples:
Getfills200Example:
summary: Default getFills 200 response
x-microcks-default: true
value:
fills:
- EMSX_SEQUENCE: 10
EMSX_ROUTE_ID: '500123'
EMSX_FILL_ID: '500123'
EMSX_TICKER: example_value
EMSX_SIDE: BUY
EMSX_FILL_AMOUNT: 10
EMSX_FILL_PRICE: 42.5
EMSX_FILL_DATE: example_value
EMSX_FILL_TIME: example_value
EMSX_BROKER: example_value
EMSX_EXCHANGE: example_value
'400':
$ref: '#/components/responses/BadRequest'
x-microcks-operation:
delay: 0
dispatcher: FALLBACK
/request/blp/emapisvc/ManualFill:
post:
operationId: manualFill
summary: Record a Manual Fill
description: Records a manual fill against a route for cases where fills are reported outside the electronic execution flow.
tags:
- Fills
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/ManualFillRequest'
examples:
ManualfillRequestExample:
summary: Default manualFill request
x-microcks-default: true
value:
EMSX_SEQUENCE: 10
EMSX_ROUTE_ID: '500123'
EMSX_FILL_AMOUNT: 10
EMSX_FILL_PRICE: 42.5
EMSX_FILL_DATE: example_value
EMSX_FILL_TIME: example_value
responses:
'200':
description: Manual fill recorded
content:
application/json:
schema:
$ref: '#/components/schemas/OperationResponse'
examples:
Manualfill200Example:
summary: Default manualFill 200 response
x-microcks-default: true
value:
STATUS: 10
MESSAGE: example_value
'400':
$ref: '#/components/responses/BadRequest'
x-microcks-operation:
delay: 0
dispatcher: FALLBACK
components:
schemas:
GetFillsRequest:
type: object
properties:
scope:
type: string
enum:
- PRIVATE
- TEAM
example: PRIVATE
fromDateTime:
type: string
format: date-time
description: Start of time range for fills
example: '2026-01-15T10:30:00Z'
Fill:
type: object
properties:
EMSX_SEQUENCE:
type: integer
description: Parent order sequence number
example: 10
EMSX_ROUTE_ID:
type: integer
description: Route that was filled
example: '500123'
EMSX_FILL_ID:
type: integer
description: Unique fill identifier
example: '500123'
EMSX_TICKER:
type: string
example: example_value
EMSX_SIDE:
type: string
enum:
- BUY
- SELL
- SHRT
example: BUY
EMSX_FILL_AMOUNT:
type: integer
description: Quantity filled
example: 10
EMSX_FILL_PRICE:
type: number
description: Fill price
example: 42.5
EMSX_FILL_DATE:
type: string
description: Fill date (YYYYMMDD)
example: example_value
EMSX_FILL_TIME:
type: string
description: Fill time (HHMMSS)
example: example_value
EMSX_BROKER:
type: string
example: example_value
EMSX_EXCHANGE:
type: string
description: Exchange where the fill occurred
example: example_value
Error:
type: object
properties:
STATUS:
type: integer
example: 10
MESSAGE:
type: string
example: example_value
REASON:
type: string
example: example_value
ManualFillRequest:
type: object
required:
- EMSX_SEQUENCE
- EMSX_ROUTE_ID
- EMSX_FILL_AMOUNT
- EMSX_FILL_PRICE
properties:
EMSX_SEQUENCE:
type: integer
description: Order sequence number
example: 10
EMSX_ROUTE_ID:
type: integer
description: Route ID
example: '500123'
EMSX_FILL_AMOUNT:
type: integer
description: Fill quantity
example: 10
EMSX_FILL_PRICE:
type: number
description: Fill price
example: 42.5
EMSX_FILL_DATE:
type: string
description: Fill date (YYYYMMDD)
example: example_value
EMSX_FILL_TIME:
type: string
description: Fill time (HHMMSS)
example: example_value
GetFillsResponse:
type: object
properties:
fills:
type: array
items:
$ref: '#/components/schemas/Fill'
example: []
OperationResponse:
type: object
properties:
STATUS:
type: integer
description: Operation status code (0 = success)
example: 10
MESSAGE:
type: string
description: Status message
example: example_value
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