Murex Settlements API

Settlement instruction management and processing

Operations 3

GET /settlements Murex List settlements #
GET /settlements/{settlementId} Murex Get a settlement #
POST /settlements/{settlementId}/instruct Murex Instruct a settlement #

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/murex-settlements-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

murex-settlements-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Murex MX.3 Market Data Accounting Settlements API
  description: Real-time and historical market data API providing quotes, yield curves, volatility surfaces, and reference data for pricing and valuation on the Murex MX.3 platform.
  version: '1.0'
  contact:
    name: Murex Support
    url: https://www.murex.com/en/support
  termsOfService: https://www.murex.com/en/legal/terms
servers:
- url: https://api.murex.com/v1/marketdata
  description: Murex MX.3 Market Data API
security:
- bearerAuth: []
tags:
- name: Settlements
  description: Settlement instruction management and processing
paths:
  /settlements:
    get:
      operationId: listSettlements
      summary: Murex List settlements
      description: Retrieve settlement instructions and their processing status.
      tags:
      - Settlements
      parameters:
      - name: status
        in: query
        description: Filter by settlement status
        schema:
          type: string
          enum:
          - Pending
          - Instructed
          - Settled
          - Failed
          - Cancelled
      - name: settlementDate
        in: query
        description: Filter by settlement date
        schema:
          type: string
          format: date
      - name: currency
        in: query
        description: Filter by settlement currency
        schema:
          type: string
      - $ref: '#/components/parameters/limit'
      - $ref: '#/components/parameters/offset'
      responses:
        '200':
          description: List of settlements
          content:
            application/json:
              schema:
                type: object
                properties:
                  items:
                    type: array
                    items:
                      $ref: '#/components/schemas/Settlement'
                  totalCount:
                    type: integer
        '401':
          description: Unauthorized
  /settlements/{settlementId}:
    get:
      operationId: getSettlement
      summary: Murex Get a settlement
      description: Retrieve details of a specific settlement instruction.
      tags:
      - Settlements
      parameters:
      - name: settlementId
        in: path
        required: true
        description: Settlement unique identifier
        schema:
          type: string
      responses:
        '200':
          description: Settlement details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Settlement'
        '401':
          description: Unauthorized
        '404':
          description: Settlement not found
  /settlements/{settlementId}/instruct:
    post:
      operationId: instructSettlement
      summary: Murex Instruct a settlement
      description: Send settlement instructions to the payment or securities settlement system.
      tags:
      - Settlements
      parameters:
      - name: settlementId
        in: path
        required: true
        description: Settlement identifier
        schema:
          type: string
      responses:
        '200':
          description: Settlement instructed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Settlement'
        '400':
          description: Settlement cannot be instructed
        '401':
          description: Unauthorized
        '404':
          description: Settlement not found
components:
  parameters:
    limit:
      name: limit
      in: query
      description: Maximum number of results to return
      schema:
        type: integer
        default: 50
        maximum: 500
    offset:
      name: offset
      in: query
      description: Number of results to skip for pagination
      schema:
        type: integer
        default: 0
  schemas:
    Settlement:
      type: object
      properties:
        settlementId:
          type: string
          description: Unique settlement identifier
        tradeId:
          type: string
          description: Associated trade identifier
        status:
          type: string
          enum:
          - Pending
          - Instructed
          - Settled
          - Failed
          - Cancelled
          description: Settlement status
        settlementDate:
          type: string
          format: date
          description: Expected settlement date
        amount:
          type: number
          description: Settlement amount
        currency:
          type: string
          description: Settlement currency (ISO 4217)
        direction:
          type: string
          enum:
          - Pay
          - Receive
          description: Settlement direction
        counterpartyId:
          type: string
          description: Counterparty identifier
        counterpartyName:
          type: string
          description: Counterparty name
        nostroAccount:
          type: string
          description: Nostro account for settlement
        correspondentBank:
          type: string
          description: Correspondent bank details
        paymentMethod:
          type: string
          enum:
          - SWIFT
          - FedWire
          - TARGET2
          - CLS
          - RTGS
          description: Payment settlement method
        messageType:
          type: string
          description: SWIFT message type (e.g., MT202, MT300)
        instructedAt:
          type: string
          format: date-time
          description: When settlement was instructed
        settledAt:
          type: string
          format: date-time
          description: Actual settlement timestamp
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: OAuth 2.0 bearer token for MX.3 API access
externalDocs:
  description: Murex MX.3 Market Data API Documentation
  url: https://docs.murex.com/mx3/marketdata-api