# Hamropatro — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Convert Gregorian dates to the Nepali Bikram Sambat calendar and access detailed information like festivals, holidays, and astronomical data for any month. Plan events and celebrations with accurate Nepali calendar dates, festival schedules, and panchanga details all in one place.

**Category:** Other | **Website:** [www.hamropatro.com/](https://www.hamropatro.com/) | **Docs:** [parse.bot/marketplace/c1ea41c6-b012-4ed1-a3c2-27b05af759d6/hamropatro-com-api](https://parse.bot/marketplace/c1ea41c6-b012-4ed1-a3c2-27b05af759d6/hamropatro-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-hamropatro-com-api-c1ea41c6/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_calendar_month

Retrieve all days in a Nepali (Bikram Sambat) calendar month with their corresponding Gregorian dates, tithi, panchanga data, and events/festivals. Each day includes holiday status and any scheduled events with titles in Nepali and English. Results are auto-iterated over the days of the month.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `month` | string | Yes | Nepali month number, 1-12 (1=Baishakh, 2=Jestha, 3=Aashadha, 4=Shrawan, 5=Bhadra, 6=Ashwin, 7=Kartik, 8=Mangsir, 9=Poush, 10=Magh, 11=Falgun, 12=Chaitra). |
| `year` | string | Yes | 4-digit Bikram Sambat year (e.g. 2083). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-hamropatro-com-api-c1ea41c6/get_calendar_month \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"month":"<string>","year":"<string>"}'
```

### get_date

Retrieve detailed information for a single Nepali (Bikram Sambat) date including its Gregorian equivalent, tithi, panchanga (sunrise, sunset, moonrise, moonset, nakshatra, yoga, karana, rashi), and any events or festivals on that date.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `day` | string | Yes | Day of the month, 1-32. |
| `month` | string | Yes | Nepali month number, 1-12 (1=Baishakh, 2=Jestha, 3=Aashadha, 4=Shrawan, 5=Bhadra, 6=Ashwin, 7=Kartik, 8=Mangsir, 9=Poush, 10=Magh, 11=Falgun, 12=Chaitra). |
| `year` | string | Yes | 4-digit Bikram Sambat year (e.g. 2083). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-hamropatro-com-api-c1ea41c6/get_date \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"day":"<string>","month":"<string>","year":"<string>"}'
```
