Retrieve account agreements and generate PDF documents for account-related contracts.
Fondo Partner API (2.0.0)
Download OpenAPI description
Overview
E-mail
License
Languages
Servers
Mock server
https://docs.fondo.se/_mock/openapi/api_3.0.3
Production
https://api.fondo.se
Sandbox
https://api.sandbox.fondo.se
Request
Returns all mutual fund instruments available on the platform, including identifiers, currency, latest prices and dates, KIID links, tradability flags, costs/fees, rebates, and instrument rules (unit decimals, minimums). Use for global discovery, search, or to pre-filter a client's instrument set.
Security
oAuth
- Mock serverhttps://docs.fondo.se/_mock/openapi/api_3.0.3/v2/partner/instrument
- Productionhttps://api.fondo.se/v2/partner/instrument
- Sandboxhttps://api.sandbox.fondo.se/v2/partner/instrument
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.fondo.se/_mock/openapi/api_3.0.3/v2/partner/instrument?start=20240101abcdef&limit=100' \
-H 'Authorization: Bearer <YOUR_Token_HERE>'Response
application/json
[ { "id": "SE0012193019SEK", "isincode": "SE0001862426", "name": "Adrigo Hedge", "currency": "NOK", "closePrice": 0, "priceDate": "2018-12-13T23:59:00.001Z", "kiid": [ … ], "decimalsUnits": 0, "minInvestmentAmountSEK": 0, "minInitialAmountSek": 0, "minSubsequentAmountSek": 0, "isComplex": true, "isBuyable": true, "isSellable": true, "isTradable": true, "cost": { … }, "rebate": 96 } ]
- Mock serverhttps://docs.fondo.se/_mock/openapi/api_3.0.3/v2/partner/instrument/{instrument_id}
- Productionhttps://api.fondo.se/v2/partner/instrument/{instrument_id}
- Sandboxhttps://api.sandbox.fondo.se/v2/partner/instrument/{instrument_id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://docs.fondo.se/_mock/openapi/api_3.0.3/v2/partner/instrument/49ad7378-121c-4a53-9894-dfd14a7b4877 \
-H 'Authorization: Bearer <YOUR_Token_HERE>'Response
application/json
{ "id": "SE0012193019SEK", "isincode": "SE0001862426", "name": "Adrigo Hedge", "currency": "NOK", "closePrice": 0, "priceDate": "2018-12-13T23:59:00.001Z", "kiid": [ { … } ], "decimalsUnits": 0, "minInvestmentAmountSEK": 0, "minInitialAmountSek": 0, "minSubsequentAmountSek": 0, "isComplex": true, "isBuyable": true, "isSellable": true, "isTradable": true, "cost": { "total": 0, "fx": 0, "transactionFeeActual": 0, "ongoingActual": 0, "managementFee": 0, "managementFeeActual": 0, "performanceFeeActual": 0, "transactionFeeEstimated": 0, "ongoingEstimated": 0, "managementFeeEstimated": 0, "performanceFeeEstimated": 0 }, "rebate": 96 }
Transactions
Transactions record movements of money and units.
- Cash transactions (CT): deposits, withdrawals, cash legs of fund orders (with settlement dates).
- Fund transactions (FT): unit movements from subscriptions/redemptions (trade & settlement dates). Use these endpoints to reconcile ledgers and statements.
Operations
Subscriptions (WebSocket & Webhooks)
Receive real-time updates from Fondo without polling.
- WebSocket: open a persistent stream for
.create,.update,.delete, andheartbeatevents. - Webhooks: register a callback URL to get signed POSTs with
current/previouspayloads. Include replay/retry handling in your consumers.
Operations