BS ⇄ AD conversion
Exact conversion from an official year table covering BS 1975–2100. Month grids come ready to render, with both dates in every cell.
Checking API…
Convert between Bikram Sambat (BS) and AD, show holidays and events, and give your website and mobile app a date picker whose colours and defaults you control from one admin dashboard.
Pick a date in either calendar. Covers every year in the calendar table.
Choose a date and press convert.
Browse any month, past or future, with holidays and events. Click a day to convert it.
Exact conversion from an official year table covering BS 1975–2100. Month grids come ready to render, with both dates in every cell.
Admins add festivals, public holidays and events on BS or AD dates, including yearly repeats. Apps only see what is published.
Colours for light and dark mode, the default calendar (BS or AD), language and digits are set in the dashboard. No app release needed.
One API for React and Next.js websites and React Native apps. Data is cached on the device, so the calendar works offline.
Year-table changes need a second admin's approval. Theme changes can roll out to a percentage of users first and roll back in one click.
Versioned, cacheable responses, API keys with rate limits, an audit log of every change, webhooks and daily database backups.
Ask an admin for an API key, then send it in the X-Api-Key header. Every endpoint is under /api.
# Today in both calendars
curl -H "X-Api-Key: pk_your_key" /api/v1/today
# Convert an AD date to BS (or use ?bs=2083-06-08)
curl -H "X-Api-Key: pk_your_key" "/api/v1/convert?ad=2026-10-02"
# A ready-to-render BS month with its events
curl -H "X-Api-Key: pk_your_key" /api/v1/months/BS/2083/6| Endpoint | What it returns |
|---|---|
GET /api/v1/today | Today in BS and AD, with weekday and month names in English and Nepali |
GET /api/v1/convert?ad=… | ?bs=… | One date converted between the calendars |
GET /api/v1/months/{BS|AD}/{year}/{month} | A 42-cell month grid with holidays and events |
GET /api/v1/events?from=…&to=… | Published events in a date range |
GET /api/v1/categories | Event categories, colours and holiday flags |
GET /api/v1/manifest?app=web | Current versions of the year table, theme and events, for caching apps |
GET /api/v1/events.ics?api_key=… | A calendar feed for Google Calendar, Outlook or Apple Calendar |
Integration guides for React, Next.js and React Native are in the docs; every endpoint is in the API reference.