Get chains

Fully supported EVM chains exposed by the Core REST API, with the chain id, network name, the protocols deployed on the chain, and the last block fully processed by all realtime service jobs for the chain.

Response Body

application/json

BASE_URL="${CORE_REST_BASE_URL:-https://api.morpho.org}"MORPHO_API_KEY="<MORPHO_API_KEY>"curl -sS "${BASE_URL}/v0/chains" \  -H "accept: application/json" \  -H "x-api-key: ${MORPHO_API_KEY}"
{
  "data": [
    {
      "chain_id": 1,
      "name": "string",
      "last_indexed_block": "string",
      "supported_protocols": [
        "blue"
      ]
    }
  ]
}