Zum Inhalt springen
GET /v1/platforms

Every chain Curve runs on and its pool registries

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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