Last 30 days of arXiv preprints flagged as milestone candidates by an offline Qwen 3
Last 30 days of arXiv preprints flagged as milestone candidates by an offline Qwen 3.6 27B per-paper extraction pass. Each paper carries structured reasoning naming the benchmark + quantified delta, model release, or novel architecture justification. Conservative; false positives are worse than false negatives.
20000 (raw units)
price
2
calls / 30d
2
unique payers
2026-05-25
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",
"queryFields": {},
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"billing": {
"credits_charged": 1,
"credits_remaining": 49
},
"capturedAt": "2026-05-23T06:00:00Z",
"ok": true,
"papers": [
{
"arxiv_id": "2505.12345",
"arxiv_url": "https://arxiv.org/abs/2505.12345",
"category": "benchmark_delta",
"is_milestone_candidate": true,
"published_at": "2026-05-14",
"reasoning": "Reports 84.7% on AIME 2024 (prior SOTA 63.1%), +21.6pp absolute. Names a new MoE-of-Experts routing scheme; reproducible config.",
"title": "A Reasoning Model That Wins Math Olympiad Gold"
}
],
"window_days": 30
},
"schema": {
"properties": {
"billing": {
"properties": {
"credits_charged": {
"example": 1,
"type": "integer"
},
"credits_remaining": {
"example": 49,
"type": "integer"
}
},
"type": "object"
},
"capturedAt": {
"example": "2026-05-23T06:00:00Z",
"type": "string"
},
"ok": {
"type": "boolean"
},
"papers": {
"items": {
"properties": {
"arxiv_id": {
"example": "2505.12345",
"type": "string"
},
"arxiv_url": {
"example": "https://arxiv.org/abs/2505.12345",
"type": "string"
},
"category": {
"example": "benchmark_delta",
"type": "string"
},
"is_milestone_candidate": {
"type": "boolean"
},
"published_at": {
"example": "2026-05-14",
"type": "string"
},
"reasoning": {
"example": "Reports 84.7% on AIME 2024 (prior SOTA 63.1%), +21.6pp absolute. Names a new MoE-of-Experts routing scheme; reproducible config.",
"type": "string"
},
"title": {
"example": "A Reasoning Model That Wins Math Olympiad Gold",
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"window_days": {
"example": 30,
"type": "integer"
}
},
"type": "object"
},
"type": "json"
}
},
"schema": {
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"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/research/milestones" # -> 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/research/milestones");
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/research/milestones")
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/4189.json, and this resource appears in /discovery/resources and /discovery/search.