API · /onthisday-api

On This Day API

healthy 3,907 Subscribers

Historical events, notable births and deaths, and holidays for any calendar date — "on this day in history" — relayed live from Wikipedia. Get today's curated highlights, or pass any date (e.g. 07-20 → Apollo 11 Moon landing among the events) to retrieve notable events, births, deaths, holidays/observances, or the editor-selected highlights. Every entry carries the year, a one-line description and a link to the relevant Wikipedia article. Ideal for "today in history" widgets, daily-content apps, trivia, newsletters and educational tools.

api.oanor.com/onthisday-api
Get an API key Try in playground → Contact provider

Machine-readable spec so AI agents can integrate this API.

/api/onthisday-api/openapi.json
/api/onthisday-api/llms.txt

Discovery: GET /api/index.json lists every API.

On This Day API — live data on the oanor API marketplace

API health

healthy
Uptime
100.00%
Server probes · 24h
Avg latency
1233 ms
Server probes · 24h
Subscribers
3,907
active
Total calls
95
last 7 days
status Full status page → · 15 probes/24h

Pricing

Pick a tier — billed monthly, cancel anytime.

Free

Free

  • 5,500 calls / month
  • 2 requests / second
  • Hard cap (429 above quota, no overage)
  • 5,500 calls/month
  • 2 req/sec
  • Today + events + holidays
  • No credit card
Sign in to subscribe

Starter

€4.20 /month

  • 60,000 calls / month
  • 8 requests / second
  • Hard cap (429 above quota, no overage)
  • 60k calls/month
  • 8 req/sec
  • Births / deaths / selected
  • Email support
Sign in to subscribe

Pro

€12.50 /month

  • 300,000 calls / month
  • 20 requests / second
  • Hard cap (429 above quota, no overage)
  • 300k calls/month
  • 20 req/sec
  • Today-in-history widgets
  • Priority support
Sign in to subscribe

Mega

€33.00 /month

  • 1,500,000 calls / month
  • 50 requests / second
  • Hard cap (429 above quota, no overage)
  • 1.5M calls/month
  • 50 req/sec
  • Content platform
  • Dedicated SLA
Sign in to subscribe

Built by

Related APIs

Other APIs with overlapping tags.

DeFi Yield Pool API — oanor API marketplace

DeFi Yield Pool API

Live detail and full APY/TVL history for any DeFi yield pool, keyless. Unlike current-yield screeners, this is the per-pool time dimension: look up a pool by its id for its current APY (base + reward), TVL, risk flags and forecast, then pull its APY and TVL over time to judge whether a headline yield is sustainable or a fading incentive. Search 15,000+ pools by token, project or chain to find a pool id. Live, nothing stored. The yield-history layer for farming, allocation, backtesting and risk apps — distinct from current-yield lists, this tracks a single pool yield through time.

api.oanor.com/yieldpool-api

Token Price History API — oanor API marketplace

Token Price History API

Historical price for any crypto token by its on-chain contract address, keyless. Unlike current-price APIs, this is the time dimension: a price chart over any window, the price at any past date or timestamp, the percentage change over a period, and the token first-ever recorded price. Works for any token on any chain by chain:address (and coingecko:id), covering long-tail tokens centralized APIs miss. Live, nothing stored. The token price-history layer for charting, backtesting, accounting, tax and analytics apps — distinct from current-price and coin-slug APIs, this prices a token HISTORY by contract address.

api.oanor.com/tokenpricehistory-api

Stock Price History (OHLC) API — oanor API marketplace

Stock Price History (OHLC) API

Live historical daily prices (OHLC) for US stocks from Nasdaq — no key, nothing stored. The price-history-and-charting view of a stock: the daily open, high, low, close and volume going back months or years, distinct from the live-quote, movers, earnings and analyst APIs in the catalogue. The history endpoint returns the daily OHLC time series over a chosen range — 1 month to 5 years, or explicit from/to dates — ready to plot or backtest. The stats endpoint computes the period statistics from that series: the period high and low, the latest close, the total return over the period, the average daily volume and the annualised volatility (from daily log returns). Build charting widgets, backtesting tools, technical-analysis pipelines, performance trackers and risk models on top of real Nasdaq price history. Look up any US stock by its ticker (symbol=AAPL) and a range (1m, 3m, 6m, 1y, 2y, 5y) or explicit from=YYYY-MM-DD and to=YYYY-MM-DD; prices and volumes are returned as clean numbers.

api.oanor.com/stockhistory-api

Castles API — oanor API marketplace

Castles API

Castles around the world as an API — 17,000+ castles from Wikidata with their country, geographic coordinates and the year they were built. Search and filter castles by name, country and build-year range, or find every castle near any coordinate by great-circle distance (perfect for "castles near me" features). Spanning Germany, Italy, France, Spain, the UK and 100+ countries, it is ideal for travel, tourism, maps, history, education and trivia apps. Open data from Wikidata.

api.oanor.com/castles-api

Frequently asked questions

Quick answers about pricing, quotas, and integration.

How do I get an API key for On This Day API?
Sign up for free at oanor.com, generate an API key from the developer dashboard, and call On This Day API with the x-oanor-key header. No credit card needed for the free tier.
What's the rate limit for On This Day API?
Free tier allows 1 request per second. Paid plans scale up to 50 requests per second on the Mega tier. Hard limits return HTTP 429 above the quota — no surprise overage charges.
How much does On This Day API cost?
On This Day API has a free tier with 100 calls / month. Paid plans start at €4.20 / month with higher quotas and faster rate limits.
Can I cancel my subscription anytime?
Yes. Plans are billed monthly and you can cancel anytime from your billing dashboard. No long-term contracts and no cancellation fee.
Is On This Day API GDPR-compliant?
All requests to On This Day API go through our EU-based gateway. Your upstream API key never leaves our server and no personal data is shared with the upstream provider beyond the request you send.

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/onthisday-api/SOME_PATH \
  -H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/onthisday-api/SOME_PATH", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/onthisday-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/onthisday-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 in

New thread

/ 4000

📌 Pinned 🔒 Locked

·

· ·

/ 4000

🔒 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 in

Open new ticket

Describe what you need help with. The provider team gets an email and replies on the ticket page.

  • No tickets yet for this API.

Subscription active — calls can start immediately.

Send your first request —

Subscription active — copy a snippet and fire off your first call.