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#, Go and Java. 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
publicGetCountriesGETcountries1
publicGetCurrenciesGETcurrencies1
publicGetDataCurrencyTickerGETdata/{currency}/ticker1
publicGetDataCurrencyTradesGETdata/{currency}/trades1
publicGetDataCurrencyDepthGETdata/{currency}/depth1
publicGetBitcoinChartsIdTradesGETbitcoin_charts/{id}/trades1
publicGetBitcoinChartsIdDepthGETbitcoin_charts/{id}/depth1

private

MethodHTTPEndpointCost
privateGetUserGETuser1
privateGetUserAddressesGETuser/addresses1
privateGetUserAddressesAddressGETuser/addresses/{address}1
privateGetUserOrdersGETuser/orders1
privateGetUserOrdersUuidGETuser/orders/{uuid}1
privateGetUserPriceAlertsGETuser/price_alerts1
privateGetMerchantGetPaymentUuidGETmerchant/get_payment/{uuid}1
privatePostUserAddressesPOSTuser/addresses1
privatePostUserOrdersPOSTuser/orders1
privatePostUserWithdrawalsPOSTuser/withdrawals1
privatePostUserEmailTransfersPOSTuser/email_transfers1
privatePostUserPaymentRequestsPOSTuser/payment_requests1
privatePostUserPriceAlertsPOSTuser/price_alerts1
privatePostMerchantCreatePaymentPOSTmerchant/create_payment1
privateDeleteUserOrdersUuidDELETEuser/orders/{uuid}1
privateDeleteUserOrdersUuidCancelDELETEuser/orders/{uuid}/cancel1
privateDeleteUserPriceAlertsIdDELETEuser/price_alerts/{id}1

On this page