Newsroom
The operational state of this publication: what the data layer is doing right now, which figures have drifted away from the articles built around them, and how every piece scores on the things that can actually be measured. Published rather than kept internal, because a site that asks you to check it should show you its own queue.
| Where | Published as | Agency figure now | Status |
|---|---|---|---|
| The economy is sending two signals at once. The Fed is listening to the louder one.Nonfarm payrolls, July 2026 | −23,000 | +21,000 | Correct as published |
| Jobs — July 2026Nonfarm payrolls, July 2026 | −23,000 | +21,000 | Correct as published |
| Field | Fallback in the repository | Feed |
|---|---|---|
| S&P 500 | 7,786 | 7,638 |
| Nasdaq Comp | 26,729 | 26,523 |
| Dow | 53,732 | 51,683 |
| 10-yr Treasury | 4.7 | 4.94 |
| VIX | 15.81 | 15.44 |
| WTI Crude | 82.4 | 107.02 |
| Bitcoin | 62,829 | 80,844 |
| Inflation (CPI) | 3.4 | 3.35 |
Rate-limit budget
The market strip polls on the cadence the API reports, not on a fixed timer: 15s while US markets are open, 600s when they are closed. Polling a daily series every fifteen seconds would be a request every reader pays for and nobody benefits from, which is why the interval follows the source rather than the habit. At the open-market rate that would still be 4 calls a minute per reader if each visit hit the upstream API — a thousand concurrent readers would exhaust a 60-a-minute free tier in under a second.
It does not, because the API responses carry
s-maxage=15, stale-while-revalidate=60. The CDN serves one upstream call to every reader inside
the window, so upstream usage is a function of time, not of traffic: at most four calls a
minute regardless of whether one person is reading or a hundred thousand are. The backtest endpoint caches
for six hours for the same reason — the answer to a question about 2014 does not change during the day.