mirrored listing x402 eip155:8453solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp

Real-time quote in one call: current price, intraday open/high/low, previous close with ch

Real-time quote in one call: current price, intraday open/high/low, previous close with change and change %, volume metrics, 52-week high/low, and 50/200-day moving averages from real Yahoo Finance data. Works for stocks, forex pairs (e.g. EURUSD=X), and commodity futures (e.g. GC=F gold, CL=F oil), not just equities. $0.001/call.

Do you run www.x402financialdata.com? 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
1000 (raw units)
price
2
calls / 30d
1
unique payers
2026-08-26
updated

Provider

www.x402financialdata.com · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0xe4181c7de066959bcca010525304ba68a84768e0",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "1000",
    "maxTimeoutSeconds": 300
  },
  {
    "scheme": "exact",
    "network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
    "payTo": "FTwh34f9yBgdD2ydjQUqHnZGRtQsHMHaRm8w2hpcB79L",
    "asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
    "amount": "1000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "method": "GET",
        "pathParams": {
          "ticker": "AAPL"
        },
        "type": "http"
      },
      "output": {
        "example": {
          "as_of": "2026-07-26",
          "currency": "USD",
          "exchange": "NMS",
          "market_cap": 3250000000000,
          "price": {
            "change": 1.36,
            "change_pct": 0.4164,
            "day_high": 329.42,
            "day_low": 324.89,
            "last": 327.74,
            "open": 325.15,
            "previous_close": 326.38
          },
          "range": {
            "200d_avg": 295.2156,
            "50d_avg": 308.4835,
            "52w_high": 334.99,
            "52w_low": 200.7038
          },
          "ticker": "AAPL",
          "volume": {
            "avg_10d": 58932100,
            "avg_3mo": 62145800,
            "latest": 42156300
          }
        },
        "type": "json"
      }
    },
    "routeTemplate": "/quote/:ticker",
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "method": {
              "enum": [
                "GET",
                "HEAD",
                "DELETE"
              ],
              "type": "string"
            },
            "pathParams": {
              "properties": {
                "ticker": {
                  "description": "Stock ticker symbol, e.g. AAPL, TSLA, MSFT",
                  "type": "string"
                }
              },
              "required": [
                "ticker"
              ],
              "type": "object"
            },
            "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"
    }
  },
  "builder-code": {
    "info": {
      "a": "bc_vyd5u8m3"
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "additionalProperties": false,
      "properties": {
        "a": {
          "description": "App builder code",
          "pattern": "^[a-z0-9_]{1,32}$",
          "type": "string"
        },
        "s": {
          "description": "Service builder codes",
          "items": {
            "pattern": "^[a-z0-9_]{1,32}$",
            "type": "string"
          },
          "type": "array"
        },
        "w": {
          "description": "Wallet builder code",
          "pattern": "^[a-z0-9_]{1,32}$",
          "type": "string"
        }
      },
      "type": "object"
    }
  }
}

Use it

curl

curl "https://www.x402financialdata.com/quote/:ticker"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://www.x402financialdata.com/quote/:ticker");
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://www.x402financialdata.com/quote/:ticker")
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/4575.json, and this resource appears in /discovery/resources and /discovery/search.