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/protocolsResponse
{
"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
| Parameter | Type | Description |
|---|---|---|
| id | string | Protocol ID: morpho, aave-v3, yearn-v3, beefy, compound-v3, euler, fluid, sky, pendle |
Example
curl https://api.philidor.io/v1/protocols/morphoResponse
Includes protocol metadata, version history, audit information, security incidents, and all vaults belonging to the protocol.