Bloomberg AIM · Capability

Bloomberg Data License API (HAPI) — Universes

Bloomberg Data License API (HAPI) — Universes. 3 operations. Lead operation: List Universes. Self-contained Naftiko capability covering one Bloomberg Aim business surface.

Run with Naftiko Bloomberg AimUniverses

What You Can Do

GET
Listuniverses — List Universes
/v1/catalogs/{catalogid}/universes
POST
Createuniverse — Create a Universe
/v1/catalogs/{catalogid}/universes
GET
Getuniverse — Get Universe Details
/v1/catalogs/{catalogid}/universes/{universeid}

MCP Tools

list-universes

List Universes

read-only idempotent
create-universe

Create a Universe

get-universe-details

Get Universe Details

read-only idempotent

Capability Spec

bloomberg-data-license-universes.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Bloomberg Data License API (HAPI) — Universes
  description: 'Bloomberg Data License API (HAPI) — Universes. 3 operations. Lead operation: List Universes. Self-contained
    Naftiko capability covering one Bloomberg Aim business surface.'
  tags:
  - Bloomberg Aim
  - Universes
  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-data-license-universes
    baseUri: https://api.bloomberg.com/eap
    description: Bloomberg Data License API (HAPI) — Universes business capability. Self-contained, no shared references.
    resources:
    - name: catalogs-catalogId-universes
      path: /catalogs/{catalogId}/universes
      operations:
      - name: listuniverses
        method: GET
        description: List Universes
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createuniverse
        method: POST
        description: Create a Universe
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: catalogs-catalogId-universes-universeId
      path: /catalogs/{catalogId}/universes/{universeId}
      operations:
      - name: getuniverse
        method: GET
        description: Get Universe Details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.BLOOMBERG_AIM_API_KEY}}'
  exposes:
  - type: rest
    namespace: bloomberg-data-license-universes-rest
    port: 8080
    description: REST adapter for Bloomberg Data License API (HAPI) — Universes. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/catalogs/{catalogid}/universes
      name: catalogs-catalogid-universes
      description: REST surface for catalogs-catalogId-universes.
      operations:
      - method: GET
        name: listuniverses
        description: List Universes
        call: bloomberg-data-license-universes.listuniverses
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createuniverse
        description: Create a Universe
        call: bloomberg-data-license-universes.createuniverse
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/catalogs/{catalogid}/universes/{universeid}
      name: catalogs-catalogid-universes-universeid
      description: REST surface for catalogs-catalogId-universes-universeId.
      operations:
      - method: GET
        name: getuniverse
        description: Get Universe Details
        call: bloomberg-data-license-universes.getuniverse
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: bloomberg-data-license-universes-mcp
    port: 9090
    transport: http
    description: MCP adapter for Bloomberg Data License API (HAPI) — Universes. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-universes
      description: List Universes
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: bloomberg-data-license-universes.listuniverses
      outputParameters:
      - type: object
        mapping: $.
    - name: create-universe
      description: Create a Universe
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: bloomberg-data-license-universes.createuniverse
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-universe-details
      description: Get Universe Details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: bloomberg-data-license-universes.getuniverse
      outputParameters:
      - type: object
        mapping: $.