Getting limits for cross-chain transfer

The method allows you to get limits for the amount of blockchain transfer

Getting limits for cross-chain transfer

POSThttps://app.apollopayment.io/api-gateway/bridge/limit
Header parameters
Body
any
Response
Body
success*boolean

Request success indicator

response*BridgeLimitResponse (object)

Response body to a request to receive limits for a cross-chain transfer

Request
const response = await fetch('https://app.apollopayment.io/api-gateway/bridge/limit', {
    method: 'POST',
    headers: {
      "Content-Type": "application/json"
    },
});
const data = await response.json();
Response
{
  "success": false,
  "response": {
    "min": "20",
    "max": "10000"
  }
}

Last updated