# IXS Finance Real World Asset Vaults List

> IXS Finance Real World Asset Vaults List is a paid API for AI agents from api-v2.ixs.finance, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns a list of IXS tokenized real-world asset vaults with yield and exposure metadata (e.g. 6% yields, BlackRock exposure)

## Facts

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

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-v2-ixs-finance-e88eb1c6
```

Example prompt: Can you show me all the available IXS Finance tokenized vaults? I want to see which ones have BlackRock exposure and what yields they're offering.

## When to prefer this

Use this endpoint when you need to discover and browse all available IXS tokenized real-world asset vaults, their yields, and their underlying asset exposure. Prefer this over the single-vault endpoint when you don't yet have a specific vault ID and need to explore options or present a full list to a user.

## Known failure modes

- Payment not provided or insufficient — returns 402 Payment Required
- API backend unavailable — returns 5xx server error
- No vaults currently available — returns empty list
- Rate limit exceeded — returns 429 Too Many Requests

## How this service works

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

## Output

A list of IXS tokenized real-world asset vaults, each with metadata such as yield rates (e.g. ~6%), underlying asset exposure (e.g. BlackRock), on-chain token details, vault addresses, and chain information.

## 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-v2-ixs-finance-e88eb1c6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api-v2.ixs.finance](https://www.zero.xyz/host/api-v2.ixs.finance/llms.txt)
