mirrored listing x402 eip155:8453

Wrapped-BTC parity monitor on Base: WBTC/cbBTC on-chain pool price vs 1:1 parity, in bps,

Wrapped-BTC parity monitor on Base: WBTC/cbBTC on-chain pool price vs 1:1 parity, in bps, plus consecutive-minute streak beyond a deviation threshold. Useful for collateral-acceptance decisions between BTC wrappers of the same underlying asset. Descriptive statistics only; not investment advice.

Do you run api.agentfeeds.jp? 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
3000 (raw units)
price
3
calls / 30d
2
unique payers
2026-09-08
updated

Provider

api.agentfeeds.jp · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x67AC1E671E87b2c91847230748ed38a596013EA6",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "3000",
    "maxTimeoutSeconds": 60
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "method": "GET",
        "queryParams": {
          "threshold_bps": 20
        },
        "type": "http"
      },
      "output": {
        "example": {
          "data": {
            "deviation_bps": 3.2,
            "pair": "WBTC/CBBTC",
            "streak_minutes_beyond_threshold": 0,
            "threshold_bps": 20,
            "ts": "2026-07-19T03:09:00Z",
            "venue": "wbtc_cbbtc_uniswap_v3"
          },
          "kind": "factual_data",
          "product": "dex.wrapped_parity"
        },
        "type": "json"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "method": {
              "enum": [
                "GET"
              ],
              "type": "string"
            },
            "queryParams": {
              "properties": {
                "threshold_bps": {
                  "description": "deviation threshold in bps for the streak counter, default 20",
                  "type": "number"
                }
              },
              "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"
    }
  }
}

Use it

curl

curl "https://api.agentfeeds.jp/v1/dex/wrapped/parity"
# -> 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.agentfeeds.jp/v1/dex/wrapped/parity");
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.agentfeeds.jp/v1/dex/wrapped/parity")
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/5104.json, and this resource appears in /discovery/resources and /discovery/search.