Lorum Customers V2 API
The Customers V2 API from Lorum — 1 operation(s) for customers v2.
The Customers V2 API from Lorum — 1 operation(s) for customers v2.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/lorum-customers-v2-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
title: Fuse Accounts Customers V2 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: Customers V2
paths:
/v2/customers/businesses/{business_id}/shareholders:
post:
tags:
- Customers V2
summary: Add a shareholder to a business
description: Add a shareholder to a business
operationId: add_shareholder_v2
parameters:
- name: business_id
in: path
description: Id of the business customer
required: true
schema:
type: string
format: Uuid
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/AddShareholderRequestV2'
required: true
responses:
'204':
description: Business has been created successfully
'400':
description: Invalid request
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'401':
description: Authentication error
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'500':
description: Internal server error
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
get:
tags:
- Customers V2
summary: List shareholders for a business
description: List shareholders for a business
operationId: list_shareholders_v2
parameters:
- name: business_id
in: path
description: Id of the business
required: true
schema:
type: string
format: Uuid
responses:
'200':
description: List of shareholders
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/ShareholderSummaryV2'
'400':
description: Invalid request
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'401':
description: Authentication error
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'500':
description: Internal server error
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
components:
schemas:
AddShareholderRequestV2:
type: object
required:
- ownership_percentage
properties:
customer_id:
type:
- string
- 'null'
format: Uuid
description: '`customer_id` of the shareholder.'
ownership_percentage:
type: integer
format: int32
minimum: 0
ErrorResponse:
type: object
description: 'User-facing error type.
This is the general error structure returned by all api routes.'
required:
- error
- message
- code
properties:
code:
type: string
description: Specific error code.
error:
type: string
description: Soon to be deprecated.
message:
type: string
description: Renaming of `error`. Human-readable description of the error.
ShareholderSummaryV2:
type: object
required:
- customer_id
- holding_percent
properties:
customer_id:
type: string
format: Uuid
holding_percent:
type: integer
format: int32
minimum: 0
securitySchemes:
OAuth2:
type: http
scheme: bearer
bearerFormat: JWT