Agent morning brief
Agent morning brief. One paid call returns the last 24 hours of AI pricing changes, new and removed models, service-status incidents, and top news headlines. The endpoint an agent calls on boot.
20000 (raw units)
price
12
calls / 30d
10
unique payers
2026-05-16
updated
Provider
tensorfeed.ai · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x549c82e6bfc54bdae9a2073744cbc2af5d1fc6d1",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"days": 1,
"news_limit": 10
},
"type": "http"
},
"output": {
"example": {
"computed_at": "2026-05-14T08:00:00Z",
"news": [
{
"published_at": "2026-05-13T15:00:00Z",
"source": "Anthropic",
"title": "Anthropic announces Claude Opus 4.8",
"url": "https://anthropic.com/news/opus-4-8"
}
],
"ok": true,
"pricing": {
"changes": [
{
"delta_pct": -6.6667,
"field": "inputPrice",
"from": 15,
"model": "Claude Opus 4.7",
"provider": "anthropic",
"to": 14
}
],
"new_models": [
{
"input_per_1m": 3,
"model": "Sonnet 4.7",
"output_per_1m": 15,
"provider": "anthropic",
"tier": "mid"
}
],
"removed_models": []
},
"status": {
"currently_degraded": 1,
"currently_down": 0,
"currently_operational": 12,
"currently_unknown": 0,
"incidents": [
{
"duration_minutes": 90,
"provider": "openai",
"resolved_at": "2026-05-13T19:30:00Z",
"service": "API",
"severity": "minor",
"started_at": "2026-05-13T18:00:00Z",
"title": "Elevated latency for ChatGPT"
}
]
},
"summary": {
"incidents": 2,
"new_models": 1,
"news_articles": 10,
"removed_models": 0,
"total_pricing_changes": 3
},
"window": {
"days": 1,
"from": "2026-05-13",
"to": "2026-05-14"
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"days": {
"description": "Window length in days back from now. Default 1, max 7.",
"maximum": 7,
"minimum": 1,
"type": "integer"
},
"news_limit": {
"description": "Max news headlines to return. Default 10, max 25.",
"maximum": 25,
"minimum": 1,
"type": "integer"
}
},
"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://tensorfeed.ai/api/premium/whats-new" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://tensorfeed.ai/api/premium/whats-new");
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://tensorfeed.ai/api/premium/whats-new")
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/4184.json, and this resource appears in /discovery/resources and /discovery/search.