Currencies

Get a list of currencies

post

Returns a list of either supported or unsupported currencies.

Authorizations
X-processing-keystringRequired

Your API key.

X-processing-signaturestringRequired

The request body, signed with HMAC-SHA512 with your secret key. You can find the secret key in your account.

Body
visiblebooleanOptional

Whether the endpoint should return supported (true) or unsupported (false) currencies.

Responses
200

OK

application/json
post
/currencies/list
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"
    }
  ]
}

List of currency pairs

post

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.

Authorizations
X-processing-keystringRequired

Your API key.

X-processing-signaturestringRequired

The request body, signed with HMAC-SHA512 with your secret key. You can find the secret key in your account.

Body
currency_fromstringOptional

Currency to exchange from. For a list of all available currencies, see Supported currencies.

currency_tostringOptional

Currency to exchange to. For a list of all available currencies, see Supported currencies.

Responses
200

OK

application/json
post
/currencies/pairs
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"
    }
  ]
}

List of currency rates

post

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.

Authorizations
X-processing-keystringRequired

Your API key.

X-processing-signaturestringRequired

The request body, signed with HMAC-SHA512 with your secret key. You can find the secret key in your account.

Body
currency_fromstringOptional

Currency to exchange from. For a list of all available currencies, see Supported currencies.

currency_tostringOptional

Currency to exchange to. For a list of all available currencies, see Supported currencies.

Responses
200

OK

application/json
post
/currencies/rates
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?