Aller au contenu
GET /v1/limits

Min/max bridgeable amount for a route

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/across-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
}