CCXT
paymium

paymium implicit API

Every raw paymium endpoint exposed as a CCXT implicit method — names, HTTP verbs, paths and rate-limit costs.

Every endpoint in paymium's api definition is exposed as an implicit method — a thin, generated wrapper around the raw exchange endpoint. Use these for exchange-specific functionality the CCXT API does not cover.

These methods are available in every CCXT language — TypeScript, JavaScript, Python, PHP, C# and Go. Call them by the camelCase name shown in the tables below (e.g. publicGetCountries); the snake_case alias (public_get_countries) also works in JavaScript, Python and PHP, and Go uses the PascalCase form (PublicGetCountries). Switch tabs for the call in each language:

const paymium = new ccxt.paymium ();
const response = await paymium.publicGetCountries (params);

Path parameters wrapped in {} (e.g. {pair}) are substituted from params; everything else in params is sent as the query string or request body. Cost is the rate-limiter weight of each call.

📚 Official paymium API documentation: github.com · paymium.com · paymium.github.io

24 implicit endpoints across 2 access groups.

public

MethodHTTPEndpointCost
publicGetCountriesGETcountries
publicGetCurrenciesGETcurrencies
publicGetDataCurrencyTickerGETdata/{currency}/ticker
publicGetDataCurrencyTradesGETdata/{currency}/trades
publicGetDataCurrencyDepthGETdata/{currency}/depth
publicGetBitcoinChartsIdTradesGETbitcoin_charts/{id}/trades
publicGetBitcoinChartsIdDepthGETbitcoin_charts/{id}/depth

private

MethodHTTPEndpointCost
privateGetUserGETuser
privateGetUserAddressesGETuser/addresses
privateGetUserAddressesAddressGETuser/addresses/{address}
privateGetUserOrdersGETuser/orders
privateGetUserOrdersUuidGETuser/orders/{uuid}
privateGetUserPriceAlertsGETuser/price_alerts
privateGetMerchantGetPaymentUuidGETmerchant/get_payment/{uuid}
privatePostUserAddressesPOSTuser/addresses
privatePostUserOrdersPOSTuser/orders
privatePostUserWithdrawalsPOSTuser/withdrawals
privatePostUserEmailTransfersPOSTuser/email_transfers
privatePostUserPaymentRequestsPOSTuser/payment_requests
privatePostUserPriceAlertsPOSTuser/price_alerts
privatePostMerchantCreatePaymentPOSTmerchant/create_payment
privateDeleteUserOrdersUuidDELETEuser/orders/{uuid}
privateDeleteUserOrdersUuidCancelDELETEuser/orders/{uuid}/cancel
privateDeleteUserPriceAlertsIdDELETEuser/price_alerts/{id}

On this page