sholat

Transportation
v1.0.0
Benign

Ambil jadwal sholat (imsak, subuh, dzuhur, ashar, maghrib, isya) untuk kota/kabupaten di Indonesia dari API Muslim.

11.7K downloads1.7K installsby @banghasan

Setup & Installation

Install command

clawhub install banghasan/sholat

If the CLI is not installed:

Install command

npx clawhub@latest install banghasan/sholat

Or install with OpenClaw CLI:

Install command

openclaw skills install banghasan/sholat

or paste the repo link into your assistant's chat

Install command

https://github.com/openclaw/skills/tree/main/skills/banghasan/sholat

What This Skill Does

Fetches Islamic prayer times (imsak, subuh, dzuhur, ashar, maghrib, isya) for Indonesian cities and regencies from api.myquran.com, which sources data from Kemenag Bimas Islam. Supports queries for today, a specific date, or a full calendar month.

Uses official Kemenag Bimas Islam data, making it the authoritative source for Indonesian prayer times without requiring account registration or an API key.

When to Use It

  • Check today's prayer times for any Indonesian city or regency
  • Get a full monthly prayer schedule for Ramadan planning
  • Look up prayer times for a specific travel date in Indonesia
  • Find the correct city or regency ID before fetching schedules
  • Automate daily prayer time lookups for a fixed location
View original SKILL.md file
# Jadwal Sholat (api.myquran.com)

API base: `https://api.myquran.com/v3`

Script helper (rekomendasi): `scripts/myquran_sholat.py`

## Quick start

Cari lokasi (kab/kota):

```bash
python3 scripts/myquran_sholat.py cari "tangerang"
```

Jadwal sholat hari ini (Asia/Jakarta) untuk lokasi berdasarkan keyword:

```bash
python3 scripts/myquran_sholat.py hari-ini "kota tangerang"
```

Jadwal sholat tanggal tertentu (format `YYYY-MM-DD`):

```bash
python3 scripts/myquran_sholat.py tanggal "kota tangerang" 2026-02-03
```

Jadwal sholat 1 bulan (format `YYYY-MM`):

```bash
python3 scripts/myquran_sholat.py bulan "kota tangerang" 2026-02
```

## Catatan pemilihan lokasi

Endpoint pencarian mengembalikan beberapa kandidat. Script akan:
- mencoba match exact (case-insensitive) ke kolom `lokasi` bila memungkinkan
- kalau tidak, pakai hasil pertama

Kalau hasilnya kurang tepat, gunakan keyword yang lebih spesifik (mis. `KOTA TANGERANG` vs `TANGERANG`), atau ambil `id` lokasi lalu panggil mode `id`.

## Pemanggilan langsung via curl (tanpa script)

Cari kab/kota:

```bash
curl -s "https://api.myquran.com/v3/sholat/kabkota/cari/tangerang"
```

Ambil jadwal hari ini:

```bash
curl -s "https://api.myquran.com/v3/sholat/jadwal/<ID>/today?tz=Asia/Jakarta"
```

Ambil jadwal periode (bulanan / harian):

```bash
# bulanan
curl -s "https://api.myquran.com/v3/sholat/jadwal/<ID>/2026-02?tz=Asia/Jakarta"

# harian
curl -s "https://api.myquran.com/v3/sholat/jadwal/<ID>/2026-02-03?tz=Asia/Jakarta"
```

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: Check today's prayer times for any Indonesian city or regency

AGENT
  1. 1Check today's prayer times for any Indonesian city or regency
  2. 2Get a full monthly prayer schedule for Ramadan planning
  3. 3Look up prayer times for a specific travel date in Indonesia
  4. 4Find the correct city or regency ID before fetching schedules
  5. 5Automate daily prayer time lookups for a fixed location
OUTPUT
Ambil jadwal sholat (imsak, subuh, dzuhur, ashar, maghrib, isya) untuk kota/kabupaten di Indonesia dari API Muslim.

Share this skill

Security Audits

VirusTotalBenign
OpenClawBenign
View full report

These signals reflect official OpenClaw status values. A Suspicious status means the skill should be used with extra caution.

Details

LanguageMarkdown
Last updatedFeb 26, 2026