Chains

GET /v1/chains — active networks with chain IDs, slugs, CAIP-2 identifiers, vault counts and TVL.

GET /v1/chains

List all chains with active vaults, including vault counts and total TVL.

Each row carries three identifiers: the integer id (EIP-155 chain id for EVM chains; a Philidor-assigned synthetic id for non-EVM chains such as Solana), the URL-safe slug accepted by ?chain= filters and /v1/vault/{network}/{address} paths, and the standards-based caip2 identifier (e.g. eip155:1). Prefer caip2 when keying on chains across namespaces. See Supported Chains for full identifier semantics and address formats.

Example

curl https://api.philidor.io/v1/chains

Response

{
  "data": [
    {
      "id": 1,
      "name": "Ethereum",
      "slug": "ethereum",
      "caip2": "eip155:1",
      "logo_url": "/chains/ethereum.svg",
      "vault_count": 350,
      "tvl": 5000000000
    },
    {
      "id": 8453,
      "name": "Base",
      "slug": "base",
      "caip2": "eip155:8453",
      "logo_url": "/chains/base.svg",
      "vault_count": 120,
      "tvl": 800000000
    }
  ]
}

See Supported Chains for full chain details including finality depths.

On this page

Raw