# IXS Finance Tokenized Vault Catalog

> IXS Finance Tokenized Vault Catalog is a paid API for AI agents from api-dev-v2.ixs.finance, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns the full catalog of ERC-4626 tokenized vaults on the InvestaX platform, optionally filtered by KYC/whitelist requirement, across Base, BSC, and 8+ EVM chains.

## Facts

- Endpoint: GET https://api-dev-v2.ixs.finance/x402/vaults
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-dev-v2-ixs-finance-eefa5c37
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_T6Q6L6t_4Iuwspe9tGDQe

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 api-dev-v2-ixs-finance-eefa5c37
```

Example prompt: Show me all available tokenized vaults on InvestaX — include both KYC-gated and open vaults across all chains, and tell me each vault's name, symbol, network, contract address, and current status.

## When to prefer this

Use this endpoint when you need to enumerate all available IXS/InvestaX tokenized vaults across chains, discover which vaults exist, filter by KYC requirement, or build a list of contract addresses for further on-chain interaction. Prefer this over the single-vault detail endpoint when you don't yet have a specific vault ID or route ID.

## Known failure modes

- Payment failure (402): x402 micropayment of $0.001 USDC not provided or invalid
- Invalid query parameter type (400): non-boolean value passed to requiresWhitelist
- Service unavailable (503): dev environment downtime or maintenance
- Empty results: no vaults match the applied filter
- Truncated schema response: metrics field may be null if on-chain data is unavailable

## How this service works

IXS Real world asset vaults — 6% yields, BlackRock exposure, tokenized on-chain

## Output

A paginated list of tokenized vault objects, each containing: MongoDB ID, stable routeId (chainId-contractAddress), display name, ERC-20 symbol, chain ID, network slug, chain display name, contract address, vault lifecycle status (active/inactive), RPC URL, block explorer URL, logo URL, optional on-chain performance metrics, and total item count.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

## 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"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-dev-v2-ixs-finance-eefa5c37/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api-dev-v2.ixs.finance](https://www.zero.xyz/host/api-dev-v2.ixs.finance/llms.txt)
