Zum Inhalt springen
GET /v1/limits

Min/max bridgeable amount for a route

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/across-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
}