Quick Start
Use the production API immediately—no installation or API key is required for the documented public endpoints:
https://api.aakashsharma.com.npSee your first API request. To run a local development server instead, follow the instructions below.
Local development
Run azanAPI locally with Python 3.11 or later:
git clone https://github.com/aakash-sharma-github/Prayer_time_api.git
cd Prayer_time_api
python3 -m venv .venv
source .venv/bin/activate
pip install -e .
pip install -r requirements-dev.txt
uvicorn app.main:app --reloadThe server listens at http://127.0.0.1:8000. Open /docs for Swagger UI or make
your first request below. The API needs no database or external prayer-time service.
For a container workflow, see the API repository’s Docker instructions.
Last updated on