Lorum Exchange API

The Exchange API from Lorum — 2 operation(s) for exchange.

Operations 2

POST /v1/exchange Create a currency exchange between two accounts holding different currencies #
GET /v1/exchange/quote Get a quote for an exchange between two currencies #

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/lorum-exchange-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

lorum-exchange-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Fuse Accounts Exchange API
  description: 'Lorum (Fuse) clearing, settlement and treasury API: multi-currency accounts, payments, exchanges, transfers, customers/KYC, documents, batch payments and sandbox simulation. Harvested from the provider''s public ReadMe reference (per-operation OpenAPI definitions).'
  contact:
    name: Lorum
    url: https://docs.lorum.com
  license:
    name: Proprietary license
  version: 0.1.0
servers:
- url: https://api.fuse.me
  description: Production
- url: https://api-sandbox.fuse.me
  description: Sandbox
security:
- OAuth2: []
tags:
- name: Exchange
paths:
  /v1/exchange:
    post:
      tags:
      - Exchange
      summary: Create a currency exchange between two accounts holding different currencies
      description: Create a currency exchange between two accounts holding different currencies
      operationId: create_exchange
      parameters:
      - name: Idempotency-Key
        in: header
        description: Idempotency key to allow safe retrying of the operation. The value should be a unique UUID for each distinct operation. See our understanding idempotency guide for full details.
        required: true
        schema:
          type: string
          format: uuid
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateExchangeRequest'
        required: true
      responses:
        '201':
          description: Customer payment has been created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateExchangeResponse'
        '400':
          description: Unable to complete request with data provided
        '404':
          description: Account not found
        '409':
          description: Idempotency-Key concurrency conflict
        '422':
          description: Idempotency-Key reuse for a different request
  /v1/exchange/quote:
    get:
      tags:
      - Exchange
      summary: Get a quote for an exchange between two currencies
      description: Get a quote for an exchange between two currencies
      operationId: get_exchange_quote
      parameters:
      - name: from_amount
        in: query
        description: The amount to convert from
        required: false
        schema:
          type: integer
          format: integer
          minimum: 0
      - name: from_account
        in: query
        description: The account the funds will be debited from
        required: true
        schema:
          type: string
          format: uuid
      - name: to_amount
        in: query
        description: The amount to convert to
        required: false
        schema:
          type: integer
          format: integer
          minimum: 0
      - name: to_account
        in: query
        description: The account the funds will be credited to
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: Successfully retrieved exchange rate
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetExchangeRateResponse'
        '400':
          description: Fuse does not support currency exchange between {from_currency} and {to_currency}.
        '404':
          description: Unable to obtain an exchange rate from {from_currency} to {to_currency}. Please contact support.
        '500':
          description: Exchange rates haven't been configured yet. Please contact support.
components:
  schemas:
    ExchangeAccountDetails:
      type: object
      required:
      - account_id
      properties:
        account_id:
          type: string
          format: uuid
        amount:
          type:
          - integer
          - 'null'
          format: int64
          minimum: 0
    CreateExchangeResponse:
      type: object
      required:
      - transaction_id
      properties:
        transaction_id:
          type: string
          format: uuid
    CreateExchangeRequest:
      type: object
      required:
      - external_reference
      - from
      - to
      properties:
        external_reference:
          type: string
          maxLength: 100
        from:
          $ref: '#/components/schemas/ExchangeAccountDetails'
        to:
          $ref: '#/components/schemas/ExchangeAccountDetails'
    GetExchangeRateResponse:
      type: object
      required:
      - exchange_rate
      - from_amount
      - from_currency
      - to_amount
      - to_currency
      properties:
        exchange_rate:
          type: number
          format: float
        from_amount:
          type: integer
          format: int64
          minimum: 0
        from_currency:
          $ref: '#/components/schemas/Currency'
        to_amount:
          type: integer
          format: int64
          minimum: 0
        to_currency:
          $ref: '#/components/schemas/Currency'
    Currency:
      type: string
      enum:
      - AED
      - USD
      - JOD
      - EGP
      - SAR
      - GBP
      - EUR
      - HKD
      - CNH
      - SGD
  securitySchemes:
    OAuth2:
      type: http
      scheme: bearer
      bearerFormat: JWT