A daily companion for your spiritual journey
Access all 365 daily reflections programmatically using our simple URL-based API. No separate JSON files needed - everything is served dynamically from a single HTML file!
Add ?format=json to any URL to get a JSON response instead of HTML:
# Get a specific reflection https://mkp715.github.io/DailyReflections/#1-2?format=json # Get list of all available reflections https://mkp715.github.io/DailyReflections/?format=json
month - Numeric month (1-12)date - Numeric day (1-31)#month-date# January 2 https://mkp715.github.io/DailyReflections/#1-2?format=json # December 25 https://mkp715.github.io/DailyReflections/#12-25?format=json # Local testing file:///path/to/index.html#1-2?format=json
The API returns a JSON object with the following structure:
{
"bookName": "dailyReflections",
"month": 1,
"date": 2,
"title": "FIRST, THE FOUNDATION",
"reflection": ["paragraph 1", "paragraph 2", ...],
"source": {
"bookName": "AS BILL SEES IT",
"page": 8
},
"explanation": ["paragraph 1", "paragraph 2", ...]
}
The requested reflection does not exist. Please check the date and try again.