API V1

Author profile photo
CryptoMonitor Team
May 14, 2026
~1 min read

Cryptomonitor API v1 — Public Endpoints

Public API without authorization. It is suitable for obtaining courses, validating addresses, and creating exchange requests.

instruments GET

Get public list of all active instruments

Parameters

No parameters

Response

Returns list of all active instruments

[
  {
    "currencyTitle": "ADA",
    "networkTitle": "ADA",
    "currencyFriendlyTitle": "Cardano",
    "precisionDecimals": 11,
    "requiresMemo": false,
    "currencyLogoLink": "https://static.coinall.ltd/cdn/assets/imgs/221/5FFE6AFD21B40243.png"
  }
]

rates-info GET

Get selected pair public info

Parameters

instrumentFromCurrencyTitle

*required
Title of sending instrument currency BTC
instrumentFromNetworkTitle

*required
Title of sending instrument network BTC
instrumentToCurrencyTitle

*required
Title of receiving instrument currency USDT
instrumentToNetworkTitle

*required
Title of receiving instrument network TRC20
claimedDepositAmount User amount to send 1

Response

Returns pair info object

{
  "instrumentFrom": {
    "currencyTitle": "USDT",
    "networkTitle": "TRC20",
    "precisionDecimals": 12
  },
  "instrumentTo": {
    "currencyTitle": "BTC",
    "networkTitle": "BTC",
    "precisionDecimals": 11
  },
  "depositRules": {
    "minAmount": "72.81550376835",
    "maxAmount": "0"
  },
  "withdrawalRules": {
    "minAmount": "0.00141001",
    "maxAmount": "0",
    "withdrawalFeeRules": {
      "maxAmount": "0.0004",
      "minAmount": "0.0004"
    }
  },
  "minConfirmationsToWithdraw": 20,
  "minConfirmationsToTrade": 20,
  "price": "0.00001936165401188960303",
  "reversePrice": "51648.480000000003909",
  "amountToGet": "0.06389345823923569"
}

validate-address POST

Validates an address for given instrument

Parameters

currencyTitle *required Title of instrument currency BTC
networkTitle *required Title of instrument network BTC
address *required Address to validate bc1qxy2kgdygjrsqtzq2n0yrf2493p83kkfjhx0wlh

Response

Returns boolean value

true

create POST

Creates an exchange order

Response

Returns order object

{
  "orderId": 618,
  "destinationAddress": "bc1qfcgrdw99lr7v2sp6at6vna7dxhwvcrgj0s887w",
  "claimedDepositAmount": "3300",
  "amountToGet": "0.063907718803",
  "rateMode": "FLOATING",
  "depositAddress": {
    "depositAddress": "TJvW1jY5xUCEobvAUJrZvoMeS8R3qQ5ThX"
  }
}

order-info GET

Returns public info about order status

set-email POST

Sets user email for notification about order

Share this article: