Philidor Docs
API Reference

Curators

List and detail vault curators.

GET /v1/curators

List all curators with their vault portfolios.

Query Parameters

ParameterTypeDefaultDescription
pagenumber1Page number
limitnumber10Results per page
sortBystringSort field
sortOrderstringdescSort order: asc or desc

Example

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

Response

{
  "success": true,
  "data": [
    {
      "id": "gauntlet",
      "name": "Gauntlet",
      "one_liner": "Quantitative risk management",
      "vault_count": 25,
      "total_tvl_usd": "500000000"
    }
  ],
  "pagination": { "page": 1, "limit": 10, "total": 15, "totalPages": 2 }
}

GET /v1/curators/{id}

Get curator detail with vaults, chain distribution, and event history.

Path Parameters

ParameterTypeDescription
idstringCurator ID (e.g., gauntlet, steakhouse, re7)

Example

curl https://api.philidor.io/v1/curators/gauntlet

On this page

Raw