API Reference
Curators
List and detail vault curators.
GET /v1/curators
List all curators with their vault portfolios.
Query Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
| page | number | 1 | Page number |
| limit | number | 10 | Results per page |
| sortBy | string | — | Sort field |
| sortOrder | string | desc | Sort order: asc or desc |
Example
curl https://api.philidor.io/v1/curatorsResponse
{
"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
| Parameter | Type | Description |
|---|---|---|
| id | string | Curator ID (e.g., gauntlet, steakhouse, re7) |
Example
curl https://api.philidor.io/v1/curators/gauntlet