# vaults.fyi Curators List

> vaults.fyi Curators List is a paid API for AI agents from api.vaults.fyi, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Retrieves the complete list of DeFi vault curators available on vaults.fyi, for use in filtering and organizing vault data

## Facts

- Endpoint: GET https://api.vaults.fyi/v2/curators
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vaults-fyi-curators-list-08abd23b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zsWwC3ow9RO3HJW_GSd4b

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability vaults-fyi-curators-list-08abd23b
```

Example prompt: Can you pull the full list of vault curators available on vaults.fyi so I can see which ones I can use to filter vault results?

## When to prefer this

Use this endpoint when you need to discover or enumerate all available vault curators on vaults.fyi before filtering vault results, populating a UI selector, or building a curator-aware query. This is a prerequisite lookup step for workflows that need to filter vaults by curator. Prefer this over scraping the vaults.fyi website directly.

## Known failure modes

- API returns 402 if payment header is missing or insufficient (x402 protocol required)
- Empty list returned if no curators are currently registered
- Network timeout if api.vaults.fyi is temporarily unavailable
- Malformed response if API version mismatch occurs

## How this service works

Retrieves a complete list of available vault curators that can be used for filtering and organizing vault data

## Output

A complete list of vault curators registered on vaults.fyi, including curator identifiers and associated metadata, which can be used as filter values when querying vault listings or performance data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "headers": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    },
    "queryParams": {
     "type": "object"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vaults-fyi-curators-list-08abd23b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.vaults.fyi](https://www.zero.xyz/host/api.vaults.fyi/llms.txt)
