IXS Real world asset vaults — 6% yields, BlackRock exposure, tokenized on-chain
IXS Real world asset vaults — 6% yields, BlackRock exposure, tokenized on-chain
1000 (raw units)
price
7
calls / 30d
5
unique payers
2026-09-08
updated
Provider
api-v2.ixs.finance · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xE341Add833F9d62082e97eA260BAA6546Cd09F73",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "1000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"data": {
"hasNextPage": false,
"hasPreviousPage": false,
"items": [
{
"chainId": 8453,
"chainName": "base",
"contractAddress": "0x974AbbD28E6c1752f7816E7F15cA3Bf9989A8D4C",
"explorerUrl": "https://basescan.org/address/0x974AbbD28E6c1752f7816E7F15cA3Bf9989A8D4C",
"id": "69e587a2a631785cb319f3f7",
"legacyId": null,
"logoUrl": "https://cdn.investax.io/chains/base.png",
"metrics": null,
"name": "Benjie Vault",
"network": "base",
"requiresWhitelist": false,
"routeId": "8453-0x974abbd28e6c1752f7816e7f15ca3bf9989a8d4c",
"rpcUrl": "https://mainnet.base.org/",
"status": "active",
"subgraphUrl": "https://api.goldsky.com/api/public/project_cmgzm21qo008x5np27bk21873/subgraphs/ixs-tokenized-vault-async-withdrawals-base-mainnet/2.0.0/gn",
"symbol": "vtbg",
"underlyingAsset": {
"address": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"decimals": 6,
"symbol": "USDC"
}
}
],
"page": 1,
"pageSize": 20,
"totalItems": 1,
"totalPages": 1
},
"ok": true
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
},
"ixs-meta": {}
}Use it
curl
curl "https://api-v2.ixs.finance/x402/vaults" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api-v2.ixs.finance/x402/vaults");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api-v2.ixs.finance/x402/vaults")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/2973.json, and this resource appears in /discovery/resources and /discovery/search.