Zum Inhalt springen
GET /v1/chains

List tracked L2 rollups

Live testen

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

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

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

API-Key holen

Code-Snippets

curl "https://api.oanor.com/growthepie-api/v1/chains" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/growthepie-api/v1/chains", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/growthepie-api/v1/chains");
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/growthepie-api/v1/chains",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "count": 29,
        "chains": [
            {
                "key": "arbitrum",
                "name": "Arbitrum One",
                "layer": null
            },
            {
                "key": "arbitrum_nova",
                "name": "Arbitrum Nova",
                "layer": null
            },
            {
                "key": "base",
                "name": "Base Chain",
                "layer": null
            },
            {
                "key": "celo",
                "name": "Celo",
                "layer": null
            },
            {
                "key": "fraxtal",
                "name": "Fraxtal",
                "layer": null
            },
            {
                "key": "gravity",
                "name": "Gravity",
                "layer": null
            },
            {
                "key": "ink",
                "name": "Ink",
                "layer": null
            },
            {
                "key": "linea",
                "name": "Linea",
                "layer": null
            },
            {
                "key": "lisk",
                "name": "Lisk",
                "layer": null
            },
            {
                "key": "loopring",
                "name": "Loopring",
                "layer": null
            },
            {
                "key": "manta",
                "name": "Manta Pacific",
                "layer": null
            },
            {
                "key": "mantle",
                "name": "Mantle",
                "layer": null
            },
            {
                "key": "megaeth",
                "name": "MegaETH",
                "layer": null
            },
            {
                "key": "metis",
                "name": "Metis",
                "layer": null
            },
            {
                "key": "mode",
                "name": "Mode Network",
                "layer": null
            },
            {
                "key": "multiple",
                "name": "Multiple L2s",
                "layer": null
            },
            {
                "key": "optimism",
                "name": "OP Mainnet",
                "layer": null
            },
            {
                "key": "plume",
                "name": "Plume Network",
                "layer": null
            },
            {
                "key": "polygon_pos",
                "name": "Polygon PoS",
                "layer": null
            },
            {
                "key": "ronin",
                "name": "Ronin",
                "layer": null
            },
            {
                "key": "scroll",
                "name": "Scroll",
                "layer": null
            },
            {
                "key": "soneium",
                "name": "Soneium",
                "layer": null
            },
            {
                "key": "starknet",
                "name": "Starknet",
                "layer": null

…