Currencies
Returns a list of either supported or unsupported currencies.
Whether the endpoint should return supported (true) or unsupported (false) currencies.
OK
Bad key header
POST /api/v2/currencies/list HTTP/1.1
Host: app.cryptoprocessing.com
X-processing-key: YOUR_API_KEY
X-processing-signature: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 16
{
"visible": true
}{
"data": [
{
"id": 1,
"type": "crypto",
"currency": "BTC",
"minimum_amount": "0.00010000",
"deposit_fee_percent": "0.000000",
"withdrawal_fee_percent": "0.025000"
}
]
}Get a list of available currency exchange pairs. Note that this endpoint only provides exchange pairs as a reference. It should not be used for exchanges in live environments.
Currency to exchange from. For a list of all available currencies, see Supported currencies.
Currency to exchange to. For a list of all available currencies, see Supported currencies.
OK
Invalid currency
Bad key header
POST /api/v2/currencies/pairs HTTP/1.1
Host: app.cryptoprocessing.com
X-processing-key: YOUR_API_KEY
X-processing-signature: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 43
{
"currency_from": "BTC",
"currency_to": "EUR"
}{
"data": [
{
"currency_from": {
"currency": "BTC",
"type": "crypto",
"min_amount": "0.00010000",
"min_amount_deposit_with_exchange": "0.00010000"
},
"currency_to": {
"currency": "EUR",
"type": "fiat"
},
"rate_from": "1",
"rate_to": "20693.84879354"
}
]
}Get a particular pair and its price. Note that this endpoint only provides rate estimates as a reference. It should not be used for exchanges in live environments.
Currency to exchange from. For a list of all available currencies, see Supported currencies.
Currency to exchange to. For a list of all available currencies, see Supported currencies.
OK
Bad key header
POST /api/v2/currencies/rates HTTP/1.1
Host: app.cryptoprocessing.com
X-processing-key: YOUR_API_KEY
X-processing-signature: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 43
{
"currency_from": "BTC",
"currency_to": "EUR"
}{
"data": [
{
"currency_from": {
"currency": "BTC",
"type": "crypto",
"min_amount": "0.00010000",
"description": "Filter by currency ISO that exchanges from.",
"min_amount_deposit_with_exchange": "0.00010000"
},
"currency_to": {
"currency": "EUR",
"type": "fiat",
"description": "Filter by currency ISO that can be converted to."
},
"rate_from": "1",
"rate_to": "20693.84879354"
}
]
}Last updated
Was this helpful?