mirrored listing x402 eip155:8453

Real-time product price lookup from a public e-commerce product URL

Real-time product price lookup from a public e-commerce product URL. Use for product price checks, price monitoring, price comparison, shopping agents, ecommerce research, retail workflows, deal finding, and target-price tracking.

Do you run e-commerce-price-monitoring-production.up.railway.app? 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
20000 (raw units)
price
3
calls / 30d
3
unique payers
2026-09-17
updated

Provider

e-commerce-price-monitoring-production.up.railway.app · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0xF7C645b7600Fb6Aae07Fd0Cf31112A7788BE8F85",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "20000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "body": {
          "threshold": 20,
          "url": "https://www.sephora.com/product/example-product"
        },
        "bodyType": "json",
        "method": "POST",
        "type": "http"
      },
      "output": {
        "example": {
          "belowThreshold": true,
          "currency": "USD",
          "ok": true,
          "price": 18,
          "threshold": 20,
          "title": "Example Product",
          "url": "https://www.sephora.com/product/example-product"
        },
        "type": "json"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "body": {
              "properties": {
                "threshold": {
                  "description": "Optional target price. If provided, the response indicates whether the current product price is at or below this amount.",
                  "type": "number"
                },
                "url": {
                  "description": "Public e-commerce product page URL to inspect.",
                  "format": "uri",
                  "type": "string"
                }
              },
              "required": [
                "url"
              ]
            },
            "bodyType": {
              "enum": [
                "json",
                "form-data",
                "text"
              ],
              "type": "string"
            },
            "method": {
              "enum": [
                "POST"
              ],
              "type": "string"
            },
            "type": {
              "const": "http",
              "type": "string"
            }
          },
          "required": [
            "type",
            "method",
            "bodyType",
            "body"
          ],
          "type": "object"
        },
        "output": {
          "properties": {
            "example": {
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://e-commerce-price-monitoring-production.up.railway.app/v1/price/check"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://e-commerce-price-monitoring-production.up.railway.app/v1/price/check");
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://e-commerce-price-monitoring-production.up.railway.app/v1/price/check")
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/6989.json, and this resource appears in /discovery/resources and /discovery/search.