cheapkeys

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

ItemDetail
Commission8.5% per order item, on gross sale price, rounded half-up
Minimum fee€0.05 per order item
Listing feeNone
Price-change feeNone
Payment feesNot charged to the supplier or the buyer
Unfulfilled-sale feeNone
SettlementFunds move from pending to available 7 days after delivery
Payout minimum€20.00
Payout methodsSEPA bank transfer, PayPal
CurrencyEUR (Supplier API v1 is EUR-only)
Effective from2026-07-01T00:00:00Z
Version2026-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"
}