/v1/platforms
Every chain Curve runs on and its pool registries
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/curve-api/v1/platforms" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/curve-api/v1/platforms", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/curve-api/v1/platforms");
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/curve-api/v1/platforms",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"count": 21,
"source": "Curve Finance",
"platforms": [
{
"chain": "arbitrum",
"registries": [
"main",
"factory",
"crypto",
"factory-twocrypto",
"factory-tricrypto",
"factory-stable-ng"
]
},
{
"chain": "aurora",
"registries": [
"main",
"factory-twocrypto",
"factory-tricrypto",
"factory-stable-ng"
]
},
{
"chain": "avalanche",
"registries": [
"main",
"factory",
"crypto",
"factory-twocrypto",
"factory-tricrypto",
"factory-stable-ng"
]
},
{
"chain": "base",
"registries": [
"factory",
"factory-crypto",
"factory-twocrypto",
"factory-tricrypto",
"factory-stable-ng"
]
},
{
"chain": "bsc",
"registries": [
"factory",
"factory-crypto",
"factory-twocrypto",
"factory-tricrypto",
"factory-stable-ng"
]
},
{
"chain": "celo",
"registries": [
"factory",
"factory-twocrypto",
"factory-tricrypto",
"factory-stable-ng"
]
},
{
"chain": "ethereum",
"registries": [
"main",
"factory",
"crypto",
"factory-crypto",
"factory-crvusd",
"factory-twocrypto",
"factory-tricrypto",
"factory-stable-ng"
]
},
{
"chain": "fantom",
"registries": [
"main",
"factory",
"crypto",
"factory-crypto",
"factory-twocrypto",
"factory-eywa",
"factory-stable-ng"
]
},
{
"chain": "fraxtal",
"registries": [
"factory-twocrypto",
"factory-tricrypto",
"factory-stable-ng"
]
},
{
"chain": "harmony",
"registries": [
"main",
…