mirrored listing x402 eip155:8453

What just launched in the x402 economy: the most recently listed or reindexed Bazaar resou

What just launched in the x402 economy: the most recently listed or reindexed Bazaar resources, newest first, with price and adoption stats. Track new competitors, spot fresh capabilities to consume, or watch a category fill up. Window configurable in days. `count` is how many listings match your window — `offset`/`limit` page through all of them, up to 100 rows per call.

Do you run datastand.dev? 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
5000 (raw units)
price
2
calls / 30d
2
unique payers
2026-09-10
updated

Provider

datastand.dev · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x470a1b647d668d3820add26d70c8371557ff4c6b",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "5000",
    "maxTimeoutSeconds": 120
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "method": "GET",
        "queryParams": {
          "days": "7",
          "limit": "50",
          "min_payers": "0",
          "offset": "0"
        },
        "type": "http"
      },
      "output": {
        "example": {
          "count": 12,
          "page": {
            "has_more": false,
            "limit": 50,
            "next_offset": null,
            "offset": 0,
            "returned": 12,
            "total": 12
          },
          "results": [
            {
              "listed_at": "2026-08-22T04:10:00.000Z",
              "payers_30d": 0,
              "price_usd": 0.01,
              "resource": "https://example.com/api/new-thing"
            }
          ],
          "window_days": 7
        },
        "type": "json"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "method": {
              "enum": [
                "GET",
                "HEAD"
              ],
              "type": "string"
            },
            "queryParams": {
              "properties": {
                "days": {
                  "description": "Look-back window in days (default 7)",
                  "type": "string"
                },
                "limit": {
                  "description": "Rows per page, 1-100 (default 50)",
                  "type": "string"
                },
                "min_payers": {
                  "description": "Minimum unique 30-day payers (default 0)",
                  "type": "string"
                },
                "offset": {
                  "description": "Skip this many listings (default 0). Use page.next_offset from the previous response. A page past the end costs nothing.",
                  "type": "string"
                }
              },
              "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://datastand.dev/api/bazaar/trending"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://datastand.dev/api/bazaar/trending");
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://datastand.dev/api/bazaar/trending")
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/6503.json, and this resource appears in /discovery/resources and /discovery/search.