v1

latestOpenAPI 3.0.32026-07-26184851.6 MB
Liquidity Pool

Check Pair

Returns the active rates you have configured for a specific asset pair on the current environment.

Use this endpoint to confirm whether you are quoting a given pair (for example before opening a new tier) and to inspect the amount bands already in place.


Endpoint

GET https://api.blockradar.co/v1/rates/check-pair


Query Parameters

KeyRequiredTypeDescription
fromAssettruestringThe symbol of the source asset.
toAssettruestringThe symbol of the destination asset.
get/v1/rates/check-pair

Query parameters

fromAssetstring required
Example:USDT

The symbol of the source asset.

toAssetstring required
Example:cNGN

The symbol of the destination asset.

Response

200

messagestring
statusCodenumber

Example response

{
  "data": {
    "fromAsset": "USDT",
    "toAsset": "cNGN",
    "hasActiveRates": true,
    "activeRateCount": 2,
    "rates": [
      {
        "id": "d69078ef-2467-40f4-bb00-63394efe32c0",
        "rate": "1545.00",
        "minAmount": "10",
        "maxAmount": "1000",
        "version": 1,
        "createdAt": "2026-04-12T09:14:22.501Z"
      }
    ]
  },
  "message": "Pair check completed",
  "statusCode": 200
}