US CPI-U (latest month): index, MoM and YoY
API · /bls-api
US Labor Statistics API
Official US economic indicators straight from the US Bureau of Labor Statistics (BLS) public time-series API — no key, read live. The cpi endpoint returns the Consumer Price Index for All Urban Consumers (CPI-U, all items, series CUUR0000SA0) for the latest month with the index level plus the month-on-month and year-on-year inflation rates, computed from the official series. The unemployment endpoint returns the seasonally-adjusted US unemployment rate (series LNS14000000) for the latest month plus the trailing year. The indicators endpoint returns a curated dashboard of headline US figures in one call — CPI, core CPI, the unemployment rate, the producer price index, average hourly earnings and total nonfarm employment — each with its latest value and period. The series endpoint is a thin live gateway to any BLS series by its id, returning the data points and computed changes, opening up the full BLS catalogue (prices, employment, wages, productivity). Annual-average rows are labelled and excluded from period maths. Live data from BLS, heavily cached because the public API is rate-limited. Live. 5 endpoints. This serves US national statistics; for the US dollar exchange rate or Treasury yields use an FX / Treasury API.
API health
healthy- Uptime
- 100.00%
- Server probes · 24h
- Avg latency
- 90 ms
- Server probes · 24h
- Subscribers
- 3,189
- active
- Total calls
- 5
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 310 calls / month
- 2 requests / second
- Hard cap (429 above quota, no overage)
- 310 calls/month
- 2 req/sec
- All 5 endpoints
- Live BLS data
Basic
€11.80 /month
- 21,000 calls / month
- 6 requests / second
- Hard cap (429 above quota, no overage)
- 21k calls/month
- 6 req/sec
- CPI + unemployment + indicators
- Series catalogue
- Email support
Pro
€31.20 /month
- 108,000 calls / month
- 22 requests / second
- Hard cap (429 above quota, no overage)
- 108k calls/month
- 22 req/sec
- High-volume access
- Full BLS series gateway
- Priority support
Mega
€69.80 /month
- 490,000 calls / month
- 55 requests / second
- Hard cap (429 above quota, no overage)
- 490k calls/month
- 55 req/sec
- Dedicated throughput
- SLA-backed uptime
- Direct support
Built by
Related APIs
Other APIs with overlapping tags.
US Weather Alerts API
Live United States weather alerts as an API, straight from the National Weather Service. Get every active severe-weather warning, watch and advisory — tornado warnings, flash-flood and river-flood warnings, severe thunderstorm, winter storm, blizzard, excessive-heat, hurricane, red-flag and dozens more — filtered by US state, by a latitude/longitude point, or by NWS forecast/county zone, and refine by severity (Extreme, Severe, Moderate, Minor), urgency or event type. Each alert carries the event name, severity, urgency and certainty, the headline, the affected areas, the full description and the official protective-action instructions, plus the effective, onset, expires and ends times. See how many alerts are active nationwide and broken down by state, resolve any location to its NWS office, forecast zone and county, browse the full list of alert event types, and look up terms in the NWS weather glossary. Perfect for weather dashboards and safety apps, emergency-notification systems, smart-home automations, Discord/Slack bots and travel tools. No accounts, no upstream key. Covers the United States; for forecasts use the Weather API.
api.oanor.com/weatheralerts-api
US Federal Register API
The US Federal Register as an API — the official daily journal of the United States government, live from federalregister.gov. Search the full record of federal rules, proposed rules, public notices and presidential documents (including executive orders) by keyword, document type, issuing agency and publication-date range; fetch any document by its number with title, abstract, agencies, publication and signing dates, executive-order number and links to the official HTML and PDF; and list the 470+ federal agencies. Ideal for legal-tech, compliance, regulatory-monitoring, government-transparency, policy-research and news applications. Public-domain US government data.
api.oanor.com/fedregister-api
US Congress API
Every member of the United States Congress as an API — all 12,766 legislators, current and historical, from 1789 to today. Look up any member by Bioguide or GovTrack id, or search and filter the full roster by name, US state, party and chamber (Senate / House), and list the current members of Congress. Each record carries the member's name, gender, birthday, party, state and district, chamber, the number of terms served and the complete term-by-term history with start and end dates, plus cross-reference ids (GovTrack, OpenSecrets, FEC, Wikipedia, Wikidata). Ideal for civic-tech, news, government-transparency, lobbying and political-research apps. Data from the public-domain @unitedstates project.
api.oanor.com/congress-api
Moldova Inflation & CPI API
Official consumer-price inflation for the Republic of Moldova — sourced live from the National Bureau of Statistics of Moldova via its public PxWeb statbank (tables PRE012600, PRE012200 and PRE012800). The cpi endpoint returns the latest reported month with headline year-on-year inflation and the month-on-month price change. The series endpoint returns the monthly history of year-on-year and month-on-month inflation, parameterised by the number of months. The groups endpoint breaks the latest month down across the major divisions — food goods, non-food goods and services — each with its year-on-year rate, showing where price pressure sits. The core endpoint returns Moldova's core-inflation measures, computed by excluding volatile components such as food, energy and regulated prices, each with year-on-year and month-on-month change — the gauges central banks watch for underlying trend. All figures are published directly by the statistics bureau, not modelled, and refreshed from source behind a short server-side cache with keep-warm. Ideal for macro and emerging-market dashboards, CIS and EU-candidate economics trackers, cost-of-living and monetary-policy tools, and fintech needing a clean structured inflation feed for a market the big aggregators rarely cover at monthly resolution. Live keyless upstream. 5 endpoints.
api.oanor.com/moldova-cpi-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for US Labor Statistics API?
What's the rate limit for US Labor Statistics API?
How much does US Labor Statistics API cost?
Can I cancel my subscription anytime?
Is US Labor Statistics API GDPR-compliant?
Pick an endpoint from the list on the left to see its details and try it.
Code snippets
Sign up to get an API key, then call any path under your slug.
curl https://api.oanor.com/bls-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/bls-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/bls-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
"https://api.oanor.com/bls-api/SOME_PATH",
headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())
Ratings
Sign in to rate.
No reviews yet.
Discussion
Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.
Sign in to start a thread or reply.
Sign inNew thread
·
-
Provider answer
🔒 This thread is locked — no new replies.
-
·
- No threads yet — start the discussion.
Support
Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.
Sign in to open a support ticket.
Sign inOpen new ticket
Describe what you need help with. The provider team gets an email and replies on the ticket page.
-
·
Urgent - No tickets yet for this API.