# Muslimsalat — 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.

> Get accurate Muslim prayer times (Salah) for any location worldwide with flexible calculation methods and daylight saving adjustments. View prayer schedules by day, week, month, or year, and retrieve times using coordinates or automatic location detection.

**Category:** Other | **Website:** [muslimsalat.com/](https://muslimsalat.com/) | **Docs:** [parse.bot/marketplace/4e51b892-14f1-422a-b181-4d27a9ca1759/muslimsalat-com-api](https://parse.bot/marketplace/4e51b892-14f1-422a-b181-4d27a9ca1759/muslimsalat-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-muslimsalat-com-api-4e51b892/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_daily_prayer_times

Fetch a single day's prayer times for a given location. Returns fajr, shurooq, dhuhr, asr, maghrib, and isha times along with location metadata (coordinates, qibla direction, country). The calculation method defaults to the region's standard if omitted.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `date` | string | No | Date in DD-MM-YYYY format. Defaults to today. |
| `daylight` | string | No | Daylight saving adjustment: 'true' or 'false'. |
| `location` | string | Yes | City name or location (e.g. 'London', 'New York', 'Mecca'). |
| `method` | string | No | Calculation method name or numeric 1-7. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-muslimsalat-com-api-4e51b892/get_daily_prayer_times \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"date":"<string>","daylight":"<string>","location":"<string>","method":"<string>"}'
```

### get_monthly_prayer_times

Fetch prayer times from the specified date through the end of that month for a given location. Returns up to ~31 daily entries depending on the month and start date.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `date` | string | No | Date in DD-MM-YYYY format to select the month. Defaults to today. |
| `daylight` | string | No | Daylight saving adjustment: 'true' or 'false'. |
| `location` | string | Yes | City name or location. |
| `method` | string | No | Calculation method name or numeric 1-7. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-muslimsalat-com-api-4e51b892/get_monthly_prayer_times \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"date":"<string>","daylight":"<string>","location":"<string>","method":"<string>"}'
```

### get_weekly_prayer_times

Fetch 7 days of prayer times for a given location starting from the specified date or today. Each item contains fajr, shurooq, dhuhr, asr, maghrib, and isha. Useful for planning ahead without fetching an entire month.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `date` | string | No | Start date in DD-MM-YYYY format. Defaults to today. |
| `daylight` | string | No | Daylight saving adjustment: 'true' or 'false'. |
| `location` | string | Yes | City name or location. |
| `method` | string | No | Calculation method name or numeric 1-7. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-muslimsalat-com-api-4e51b892/get_weekly_prayer_times \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"date":"<string>","daylight":"<string>","location":"<string>","method":"<string>"}'
```

### get_yearly_prayer_times

Fetch prayer times from the specified date through the end of that year for a given location. Returns up to ~365 daily entries. Large response; use monthly if a smaller window suffices.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `date` | string | No | Date in DD-MM-YYYY format to select the year. Defaults to today. |
| `daylight` | string | No | Daylight saving adjustment: 'true' or 'false'. |
| `location` | string | Yes | City name or location. |
| `method` | string | No | Calculation method name or numeric 1-7. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-muslimsalat-com-api-4e51b892/get_yearly_prayer_times \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"date":"<string>","daylight":"<string>","location":"<string>","method":"<string>"}'
```
