Back to Ccxt

Paymium

wiki/exchanges-implicit/paymium.md

4.5.733.6 KB
Original Source

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:

<!-- tabs:start -->

JavaScript

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

TypeScript

typescript
import ccxt from 'ccxt';
const paymium = new ccxt.paymium ();
const response = await paymium.publicGetCountries (params);

Python

python
import ccxt
paymium = ccxt.paymium()
response = paymium.public_get_countries(params)

PHP

php
$paymium = new \ccxt\paymium();
$response = $paymium->public_get_countries($params);

C#

csharp
using ccxt;
var paymium = new Paymium();
var response = await paymium.publicGetCountries(parameters);

Go

go
paymium := ccxt.NewPaymium(nil)
response := <-paymium.PublicGetCountries(params)
<!-- tabs:end -->

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