Vai al contenuto
GET /v1/limits

Min/max bridgeable amount for a route

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/across-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}