Retrive Pairs

Dive into the specifics of each API endpoint by checking out our complete documentation.

Check all Exchange Pairs

POST /coins/pairs

Get all pairs for crypto to crypto exchange pairs

Pair fields allow you to swap your cryptocurrencies with different cryptocurrencies using the API.

Get all currency pairs

post
/pairs
Authorizations
AuthorizationstringRequired
Body
merchant_idstringRequired
Responses
200

successful operation

application/json
post
/pairs
POST /api/merchant/pairs HTTP/1.1
Host: kriptopay.com
Authorization: YOUR_API_KEY
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 18

"merchant_id=''"
[
  {
    "symbol": "BTC_USDT",
    "from_min": 0.0000034,
    "from_max": 1000,
    "to_min": 10,
    "to_max": 3700000,
    "reverse": true
  }
]

Last updated