mirrored listing x402 eip155:8453

Curated stock-market news with ticker tags, source, publisher, image, and timestamps

Curated stock-market news with ticker tags, source, publisher, image, and timestamps. Pass `?ticker=AAPL` to filter. From x402stock, a pay-per-call market & economic data API for AI agents. No API key or account; pay in USDC via x402.

Do you run x402stock.xyz? 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
357
calls / 30d
7
unique payers
2026-09-14
updated

Provider

x402stock.xyz · discovered, not yet claimed by its owner

Payment (x402 accepts[])

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

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "method": "GET",
        "queryParams": {
          "limit": 10,
          "ticker": "AAPL"
        },
        "type": "http"
      },
      "output": {
        "example": {
          "articles": [
            {
              "author": "Jane Reporter",
              "description": "Shares climbed on strong services revenue.",
              "id": "abc123",
              "image_url": "https://example.com/img/apple.jpg",
              "keywords": [
                "earnings",
                "services"
              ],
              "published_at": "2026-05-29T12:00:00Z",
              "publisher": "Example Wire",
              "publisher_homepage": "https://example.com",
              "tickers": [
                "AAPL"
              ],
              "title": "Apple reaches new all-time high",
              "url": "https://example.com/news/apple-high"
            }
          ],
          "as_of": "2026-05-29T20:00:00.000Z",
          "count": 1,
          "source": "x402stock"
        },
        "type": "json"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "method": {
              "enum": [
                "GET",
                "HEAD",
                "DELETE"
              ],
              "type": "string"
            },
            "queryParams": {
              "$schema": "https://json-schema.org/draft/2020-12/schema",
              "additionalProperties": false,
              "properties": {
                "limit": {
                  "default": 10,
                  "exclusiveMinimum": 0,
                  "maximum": 50,
                  "type": "integer"
                },
                "ticker": {}
              },
              "required": [
                "ticker",
                "limit"
              ],
              "type": "object"
            },
            "type": {
              "const": "http",
              "type": "string"
            }
          },
          "required": [
            "type",
            "method"
          ],
          "type": "object"
        },
        "output": {
          "properties": {
            "example": {
              "$schema": "https://json-schema.org/draft/2020-12/schema",
              "additionalProperties": false,
              "properties": {
                "articles": {
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "author": {
                        "anyOf": [
                          {
                            "type": "string"
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "description": {
                        "anyOf": [
                          {
                            "type": "string"
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "id": {
                        "type": "string"
                      },
                      "image_url": {
                        "anyOf": [
                          {
                            "type": "string"
                          },
                          {
                            "type": "null"
                          }
                        ]
                      },
                      "keywords": {
                        "items": {
                          "type": "string"
                        },
                        "type": "array"
                      },
                      "published_at": {
                        "type": "string"
                      },
                      "publisher": {
                        "type": "string"
                      },
                      "publisher_homepage": {
                        "type": "string"
                      },
                      "tickers": {
                        "items": {
                          "type": "string"
                        },
                        "type": "array"
                      },
                      "title": {
                        "type": "string"
                      },
                      "url": {
                        "type": "string"
                      }
                    },
                    "required": [
                      "id",
                      "title",
                      "description",
                      "url",
                      "image_url",
                      "author",
                      "publisher",
                      "publisher_homepage",
                      "published_at",
                      "tickers",
                      "keywords"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "as_of": {
                  "type": "string"
                },
                "count": {
                  "type": "number"
                },
                "source": {
                  "const": "x402stock",
                  "type": "string"
                }
              },
              "required": [
                "source",
                "as_of",
                "count",
                "articles"
              ],
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://x402stock.xyz/api/v1/news"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://x402stock.xyz/api/v1/news");
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://x402stock.xyz/api/v1/news")
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/5245.json, and this resource appears in /discovery/resources and /discovery/search.