Philidor Docs
API Reference

Protocols

List and detail DeFi protocols tracked by Philidor.

GET /v1/protocols

List all tracked protocols with vault counts and TVL.

Example

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

Response

{
  "success": true,
  "data": [
    {
      "id": "morpho",
      "name": "Morpho",
      "logo": "/protocols/morpho.svg",
      "vault_count": 150,
      "total_tvl_usd": "2500000000",
      "versions": ["v1", "v2"],
      "website": "https://morpho.org"
    }
  ]
}

GET /v1/protocols/{id}

Get protocol detail with metadata, vault list, versions, audits, and incident history.

Path Parameters

ParameterTypeDescription
idstringProtocol ID: morpho, aave-v3, yearn-v3, beefy, compound-v3, euler, fluid, sky, pendle

Example

curl https://api.philidor.io/v1/protocols/morpho

Response

Includes protocol metadata, version history, audit information, security incidents, and all vaults belonging to the protocol.

On this page

Raw