Get pairs

Returns a list of all pairs that can be traded on Nexo Pro, along with the minimum and maximum amounts that can be traded per trade.

getPairs(): array
Example:
$pairs = NexoPro::getPairs();
{
  "pairs": [
    "BTC/USDT",
    "ETH/BTC"
  ],
  "min_limits": {
    "BTC": "0.00108045000000000016",
    "ETH": "0.0220500000000000002"
  },
  "max_limits": {
    "BTC": "2.94182539999999992",
    "ETH": "49.8777993899999998"
  }
}

Last updated