LectServe
LectServe — LectServe — auto-discovered JSON endpoint
LectServe exposes lectServe — auto-discovered JSON endpoint We verified a keyless GET endpoint returning JSON (Calendar). Check the provider docs for rate limits and terms before production use.
GET http://www.lectserve.com/today
{
"red_letter": {
"lectionary": "acna",
"prevSunday": "2026-06-28",
"services": [
{
"name": "Sunday Closest to July 6",
"readings": [
"Zechariah 9:9-12",
"Psalm 145:1-13; (145:14-21)"
],
"alt": ""
}
],
"type": "Sunday",
"day": "Sunday",
"nextSunday": "2026-07-12",
"year": "A",
"date_pretty": "5. July 2026"
},
"sunday": {
"year": "A",
"nextSunday": "2026-07-12",
"day": "Sunday",
"date_pretty": "5. July 2026",
"date": "2026-07-05",
"services": [
{
"readings": [
"Zechariah 9:9-12",
"Psalm 145:1-13; (145:14-21)"
],
"name": "Sunday Closest to July 6",
"alt": ""
}
],
"prevSunday": "2026-06-28",
"lectionary": "acna"
},
"daily": {
"yesterday": "2026-07-04",
"tomorrow": "2026-07-06",
"week": "Sunday Closest to July 6",
"day": "Sunday",
"date_pretty": "5. July 2026",
"date": "2026-07-05",
"readings": {
"evening": {
"second": "Acts 27",
"first": "Esther 1"
},
"morning": {
"first": "Judges 16",
"second": "1 Corinthians 4:18-5 end"
}
},
"lectionary": "acna-sec"
}
}curl "http://www.lectserve.com/today"const res = await fetch("http://www.lectserve.com/today");
const data = await res.json();
console.log(data);import requests
res = requests.get("http://www.lectserve.com/today")
print(res.json())BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET
/todayPROBEDLectServe — LectServe — auto-discovered JSON endpoint
/today?limit=5Paginated variant with limit parameter.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
LectServe: common questions
Is LectServe free to use?
Yes — LectServe is a free social & work API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does LectServe need an API key?
No — LectServe needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call LectServe from the browser?
Not directly — LectServe doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.
Is LectServe up right now?
As of our last scheduled check, LectServe is healthy with 99.02% uptime over 90 days and a 786 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.