Fees
The machine-readable fee schedule: commission, settlement, and payout rules — identical to GET /api/v1/fees.
Every number here is rendered from the same source as GET /api/v1/fees, so the schedule you read is the schedule you are charged. All amounts are integer minor units — 5 = €0.05.
Schedule
| Item | Detail |
|---|---|
| Commission | 8.5% per order item, on gross sale price, rounded half-up |
| Minimum fee | €0.05 per order item |
| Listing fee | None |
| Price-change fee | None |
| Payment fees | Not charged to the supplier or the buyer |
| Unfulfilled-sale fee | None |
| Settlement | Funds move from pending to available 7 days after delivery |
| Payout minimum | €20.00 |
| Payout methods | SEPA bank transfer, PayPal |
| Currency | EUR (Supplier API v1 is EUR-only) |
| Effective from | 2026-07-01T00:00:00Z |
| Version | 2026-07-01 |
As JSON
The exact payload of GET /api/v1/fees:
{
"version": "2026-07-01",
"effective_from": "2026-07-01T00:00:00Z",
"currency": "EUR",
"commission": {
"rate_bps": 850,
"min_fee": {
"amount": 5,
"currency": "EUR"
},
"applies": "per order item, on gross sale price, rounded half-up"
},
"listing_fee": null,
"price_change_fee": null,
"payment_fees_charged_to_supplier": false,
"payment_fees_charged_to_buyer": false,
"settlement": {
"holding_period_days": 7,
"trigger": "delivery"
},
"payout": {
"methods": [
"sepa_bank_transfer",
"paypal"
],
"minimum": {
"amount": 2000,
"currency": "EUR"
},
"fee": null
},
"unfulfilled_sale_fee": null,
"docs_url": "https://pay.mmokick.com/developers/fees"
}