Bloomberg AIM · Capability

Bloomberg HTTP API — Intraday Data

Bloomberg HTTP API — Intraday Data. 2 operations. Lead operation: Request Intraday Bar Data. Self-contained Naftiko capability covering one Bloomberg Aim business surface.

Run with Naftiko Bloomberg AimIntraday Data

What You Can Do

POST
Intradaybarrequest — Request Intraday Bar Data
/v1/request/blp/refdata/intradaybarrequest
POST
Intradaytickrequest — Request Intraday Tick Data
/v1/request/blp/refdata/intradaytickrequest

MCP Tools

request-intraday-bar-data

Request Intraday Bar Data

request-intraday-tick-data

Request Intraday Tick Data

Capability Spec

bloomberg-http-intraday-data.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Bloomberg HTTP API — Intraday Data
  description: 'Bloomberg HTTP API — Intraday Data. 2 operations. Lead operation: Request Intraday Bar Data. Self-contained
    Naftiko capability covering one Bloomberg Aim business surface.'
  tags:
  - Bloomberg Aim
  - Intraday Data
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    BLOOMBERG_AIM_API_KEY: BLOOMBERG_AIM_API_KEY
capability:
  consumes:
  - type: http
    namespace: bloomberg-http-intraday-data
    baseUri: https://localhost:3000
    description: Bloomberg HTTP API — Intraday Data business capability. Self-contained, no shared references.
    resources:
    - name: request-blp-refdata-IntradayBarRequest
      path: /request/blp/refdata/IntradayBarRequest
      operations:
      - name: intradaybarrequest
        method: POST
        description: Request Intraday Bar Data
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: request-blp-refdata-IntradayTickRequest
      path: /request/blp/refdata/IntradayTickRequest
      operations:
      - name: intradaytickrequest
        method: POST
        description: Request Intraday Tick Data
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: basic
      username: '{{env.BLOOMBERG_AIM_USER}}'
      password: '{{env.BLOOMBERG_AIM_PASS}}'
  exposes:
  - type: rest
    namespace: bloomberg-http-intraday-data-rest
    port: 8080
    description: REST adapter for Bloomberg HTTP API — Intraday Data. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/request/blp/refdata/intradaybarrequest
      name: request-blp-refdata-intradaybarrequest
      description: REST surface for request-blp-refdata-IntradayBarRequest.
      operations:
      - method: POST
        name: intradaybarrequest
        description: Request Intraday Bar Data
        call: bloomberg-http-intraday-data.intradaybarrequest
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/request/blp/refdata/intradaytickrequest
      name: request-blp-refdata-intradaytickrequest
      description: REST surface for request-blp-refdata-IntradayTickRequest.
      operations:
      - method: POST
        name: intradaytickrequest
        description: Request Intraday Tick Data
        call: bloomberg-http-intraday-data.intradaytickrequest
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: bloomberg-http-intraday-data-mcp
    port: 9090
    transport: http
    description: MCP adapter for Bloomberg HTTP API — Intraday Data. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: request-intraday-bar-data
      description: Request Intraday Bar Data
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: bloomberg-http-intraday-data.intradaybarrequest
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: request-intraday-tick-data
      description: Request Intraday Tick Data
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: bloomberg-http-intraday-data.intradaytickrequest
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.