# IXS Tokenized Vault Info

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

Returns detailed metadata for a single IXS tokenized vault, identified by MongoDB ID, chain-address route ID, or contract address.

## Facts

- Endpoint: GET https://api-v2.ixs.finance/x402/vaults/:vaultId/info
- Price: $0.010000/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-e0612264
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QV9MFX3D75CXMvD1kXIB4

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-e0612264
```

Example prompt: Can you pull up the full details for the IXS vault at contract address 0x974AbbD28E6c1752f7816E7F15cA3Bf9989A8D4C on Base chain (route ID 8453-0x974a…)?

## When to prefer this

Use this endpoint when you need detailed metadata for a specific IXS tokenized vault and you already have a vault identifier (MongoDB ID, chain-address route ID, or contract address). Prefer this over generic DeFi data sources when querying IXS-specific vault data including yield, BlackRock exposure, and tokenization details.

## Known failure modes

- Invalid or non-existent vault ID returns 404 not found
- Malformed contract address or route ID returns 400 bad request
- Payment failure or insufficient USDC balance prevents access (x402 payment required)
- Network or chain ID mismatch causes vault not found error

## How this service works

Detailed metadata for a single IXS tokenized vault. Accepts vault ID, route ID (chainId-address), or contract address.

## Output

A JSON object containing detailed metadata for the specified IXS tokenized vault, including yield rates, underlying asset exposure (e.g. BlackRock), contract address, chain information, and other vault-specific configuration details.

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "vaultId"
     ],
     "properties": {
      "vaultId": {
       "type": "string",
       "examples": [
        "69e587a2a631785cb319f3f7",
        "8453-0x974abbd28e6c1752f7816e7f15ca3bf9989a8d4c",
        "0x974AbbD28E6c1752f7816E7F15cA3Bf9989A8D4C"
       ],
       "description": "Vault identifier — accepts MongoDB ID (e.g. 69e587a2…), route ID (e.g. 8453-0x974a…), or contract address"
      }
     }
    },
    "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-e0612264/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)
