Latest news headlines and summaries for a stock ticker from real Yahoo Finance data
Latest news headlines and summaries for a stock ticker from real Yahoo Finance data. Includes article title, summary, publish date, publisher name, and URL — everything needed to monitor sentiment and catalysts. Supports optional limit parameter (default 10, max 50). $0.005/call.
5000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-06
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": "5000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "FTwh34f9yBgdD2ydjQUqHnZGRtQsHMHaRm8w2hpcB79L",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "5000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"pathParams": {
"ticker": "AMD"
},
"type": "http"
},
"output": {
"example": {
"articles": [
{
"published_at": "2026-07-29T22:00:00Z",
"publisher": "Yahoo Finance Video",
"summary": "Asking for a Trend Host Josh Lipton previews the biggest market catalysts for Thursday, including highly anticipated earnings from Apple (AAPL) and Amazon (AMZN).",
"title": "Big Tech earnings meet IPO buzz: What to watch Thursday",
"url": "https://finance.yahoo.com/video/big-tech-earnings-meet-ipo-220000114.html"
}
],
"as_of": "2026-07-26",
"count": 2,
"ticker": "AAPL"
},
"type": "json"
}
},
"routeTemplate": "/news/: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": {
"limit": {
"description": "Max articles to return, default 10, max 50.",
"type": "integer"
}
},
"required": [],
"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/news/: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/news/: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/news/:ticker")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/4576.json, and this resource appears in /discovery/resources and /discovery/search.