Build an .ics event + calendar links
API · /ical-api
iCalendar API
Build a valid RFC 5545 iCalendar (.ics) event from simple parameters — and get ready-to-use "add to calendar" links for Google, Outlook, Office 365 and Yahoo. Pass a title, start and end (ISO 8601 or unix timestamps, in UTC) — or a duration in minutes, or an all-day flag — plus optional location, description, URL, organizer, an RRULE recurrence (e.g. FREQ=WEEKLY) and a reminder (a VALARM N minutes before). The service returns the fully-formed .ics text with correct escaping and 75-octet line folding, a base64 data: URI you can drop straight into a download link, and the four calendar deep-links. A second endpoint parses raw .ics text back into structured JSON events. Everything is computed locally with no network calls, so it is fast and deterministic. Built for booking and scheduling flows, event pages, email "add to calendar" buttons, reminders and no-code automations. A calendar-event builder — distinct from date/time math (datetime), public-holiday data (holidays) and the Jewish calendar (hebcal). No upstream key, no cache.
API health
healthy- Uptime
- 100.00%
- Server probes · 24h
- Avg latency
- 80 ms
- Server probes · 24h
- Subscribers
- 3,836
- active
- Total calls
- 57
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 2,280 calls / month
- 2 requests / second
- Hard cap (429 above quota, no overage)
- 2,280 calls/month
- 2 req/sec
- .ics + calendar links
- No credit card
Starter
€6.65 /month
- 45,000 calls / month
- 8 requests / second
- Hard cap (429 above quota, no overage)
- 45k calls/month
- 8 req/sec
- RRULE + VALARM + parse
- Email support
Pro
€21.20 /month
- 232,000 calls / month
- 20 requests / second
- Hard cap (429 above quota, no overage)
- 232k calls/month
- 20 req/sec
- Booking & scheduling apps
- Priority support
Mega
€55.50 /month
- 860,000 calls / month
- 50 requests / second
- Hard cap (429 above quota, no overage)
- 860k calls/month
- 50 req/sec
- Calendar-platform scale
- Dedicated SLA
Built by
Related APIs
Other APIs with overlapping tags.
Stock Index Seasonality API
The calendar patterns equity traders position around — "Sell in May", the Santa Claus rally, the September swoon — computed live from ~10 years of Yahoo Finance monthly data across the world's major stock indices (no key, nothing stored). Equities have well-documented seasonal tendencies, and this measures them directly: for each index it takes a decade of monthly returns, groups them by calendar month, and returns the average return in each of the twelve months, the share of years that month was positive (the win rate), and the historically strongest and weakest months. The seasonality endpoint returns one index's full 12-month seasonal profile plus the current month's historical bias. The month endpoint flips it around: for a calendar month it ranks every index by its historical average return, so you can see which markets are seasonally strong or weak right now. The indices endpoint lists what is covered, from the S&P 500, Nasdaq, Dow and Russell to the DAX, FTSE, CAC, Euro Stoxx, Nikkei and Hang Seng. The equity-index seasonality / calendar-pattern cut — distinct from the FX, commodity and crypto seasonality APIs, the index price feed and the constituent APIs.
api.oanor.com/indexseasonality-api
Commodity Seasonality API
The calendar patterns commodity traders position around, computed live from ~10 years of Yahoo Finance monthly futures data (no key, nothing stored). Commodities are the most seasonal market there is: natural gas tends to rally into winter heating demand, gasoline into the summer driving season, grains around the planting and harvest calendar. This measures it directly — for each commodity it takes a decade of monthly returns, groups them by calendar month, and returns the average return in each of the twelve months, the share of years that month was positive (the win rate), and the historically strongest and weakest months. The seasonality endpoint returns one commodity's full 12-month seasonal profile plus the current month's historical bias. The month endpoint flips it around: for a given calendar month it ranks every commodity by its historical average return, so you can see what is seasonally bullish or bearish right now. The commodities endpoint lists what is covered. The commodity-seasonality / calendar-pattern cut — distinct from the FX-seasonality API (currencies), the commodity-price feed, the commodity-spreads and the commodity-momentum APIs. It answers what a commodity usually does this month, not what it costs today.
api.oanor.com/commodityseasonality-api
Crypto Project Team & Events API
The "who built it and what is on its calendar" view of a cryptocurrency, served from the public CoinPaprika feed. The coin endpoint returns the project's identity and technical profile — market-cap rank, coin-or-token type, whether it is active, the genesis date, development status, consensus / proof type, hashing algorithm, organisation structure, the open-source flag and its industry tags. The team endpoint returns the people behind the project — names and roles such as founders, authors and leads. The events endpoint returns the project's event calendar — conferences, mainnet launches, exchange listings and milestones, each with a date and a link, newest first. This is the project-and-people view of a coin — its team, profile and calendar, not its price — distinct from the price-feed, market and CoinGecko-profile APIs in the catalogue. A coin is a CoinPaprika id (btc-bitcoin); a bare symbol (btc) or name (bitcoin) is resolved automatically to the best-ranked match. Live, no key on the upstream, nothing stored.
api.oanor.com/cryptoprojects-api
Earnings & Stock Splits Calendar API
Live US corporate-events calendar from Nasdaq — no key, nothing stored. The earnings and stock-splits calendar: which companies report earnings on a given day and which stocks are about to split, distinct from the economic-calendar, IPO-calendar and dividend APIs in the catalogue. The earnings endpoint returns every company reporting on a date — ticker, name, the consensus EPS forecast, the reporting time (before market open or after market close), market cap, the number of analyst estimates, the fiscal quarter ending and the prior-year EPS and report date — ranked by market cap. The splits endpoint returns the upcoming stock splits: ticker, name, the split ratio and the execution date. Build earnings-season dashboards, event-driven trading bots, investor-relations trackers and "who reports today" widgets on top of real Nasdaq calendar data. The earnings endpoint defaults to today (US Eastern) and accepts any date; EPS and market cap come back as clean numbers and reporting time is normalised to pre-market, after-hours or unspecified.
api.oanor.com/earnings-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for iCalendar API?
What's the rate limit for iCalendar API?
How much does iCalendar API cost?
Can I cancel my subscription anytime?
Is iCalendar 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/ical-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/ical-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/ical-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/ical-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.