mirrored listing x402 eip155:8453

Retrieves a filtered list of vaults with their basic information including address, networ

Retrieves a filtered list of vaults with their basic information including address, network, associated asset details, and transactional support status.

Do you run api.vaults.fyi? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
2000 (raw units)
price
9
calls / 30d
7
unique payers
2026-09-13
updated

Provider

api.vaults.fyi · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x108BCd8a07C3fdfca3Aa500784A8573123a1029F",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "2000",
    "maxTimeoutSeconds": 60
  },
  {
    "scheme": "batch-settlement",
    "network": "eip155:8453",
    "payTo": "0x108BCd8a07C3fdfca3Aa500784A8573123a1029F",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "2000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "headers": {
          "x-402-auth": "true"
        },
        "method": "GET",
        "queryParams": {
          "page": 0,
          "perPage": 50
        },
        "type": "http"
      },
      "output": {
        "type": "json"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "headers": {
              "additionalProperties": {
                "type": "string"
              },
              "type": "object"
            },
            "method": {
              "enum": [
                "GET"
              ],
              "type": "string"
            },
            "queryParams": {
              "additionalProperties": false,
              "properties": {
                "allowCorrupted": {
                  "default": false,
                  "description": "Allow inclusion of corrupted vaults.",
                  "type": "boolean"
                },
                "assetSymbol": {
                  "description": "Include only vaults with an asset of provided symbol(ticker)",
                  "minLength": 1,
                  "type": "string"
                },
                "network": {
                  "description": "Include only vaults with provided network(name or CAIP)",
                  "enum": [
                    "mainnet",
                    "optimism",
                    "arbitrum",
                    "polygon",
                    "gnosis",
                    "base",
                    "unichain",
                    "swellchain",
                    "celo",
                    "worldchain",
                    "berachain",
                    "ink",
                    "bsc",
                    "hyperliquid",
                    "plasma",
                    "avalanche",
                    "katana",
                    "linea",
                    "mega-eth",
                    "monad",
                    "etherlink",
                    "robinhood",
                    "eip155:1",
                    "eip155:10",
                    "eip155:42161",
                    "eip155:137",
                    "eip155:100",
                    "eip155:8453",
                    "eip155:130",
                    "eip155:1923",
                    "eip155:42220",
                    "eip155:480",
                    "eip155:80094",
                    "eip155:57073",
                    "eip155:56",
                    "eip155:999",
                    "eip155:9745",
                    "eip155:43114",
                    "eip155:747474",
                    "eip155:59144",
                    "eip155:4326",
                    "eip155:143",
                    "eip155:42793",
                    "eip155:4663"
                  ],
                  "type": "string"
                },
                "onlyAppFeatured": {
                  "description": "Include only vaults that are featured in app.vaults.fyi",
                  "type": "boolean"
                },
                "onlyTransactional": {
                  "description": "Include only vaults that are supported in the transactional interface.",
                  "type": "boolean"
                },
                "page": {
                  "default": 0,
                  "description": "Page number (starting from 0)",
                  "minimum": 0,
                  "type": "integer"
                },
                "perPage": {
                  "default": 50,
                  "description": "Number of items per page",
                  "exclusiveMinimum": true,
                  "maximum": 5000,
                  "minimum": 0,
                  "type": "integer"
                }
              },
              "type": "object"
            },
            "type": {
              "const": "http",
              "type": "string"
            }
          },
          "required": [
            "type",
            "method"
          ],
          "type": "object"
        },
        "output": {
          "properties": {
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://api.vaults.fyi/v2/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.vaults.fyi/v2/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.vaults.fyi/v2/vaults")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/1554.json, and this resource appears in /discovery/resources and /discovery/search.