/v1/limits
Min/max bridgeable amount for a route
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/across-api/v1/limits" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/across-api/v1/limits", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/across-api/v1/limits");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/across-api/v1/limits",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"token": "USDC",
"source": "Across",
"to_chain": "Base",
"from_chain": "Ethereum",
"max_deposit": 630982.227784,
"min_deposit": 0.500056,
"max_deposit_instant": 2699.292303,
"max_deposit_short_delay": 630982.227784
},
"meta": {
"timestamp": "2026-06-10T22:57:03.866Z",
"request_id": "db748eb9-8a5e-4159-b79f-73375130fc61"
},
"status": "ok",
"message": "Limits retrieved successfully",
"success": true
}