Liturgia De Las Horas.github.io Json May 2026
Some projects don't store static JSON but generate it on-the-fly via GitHub Actions. For example, a repository might expose:
"antiphon": "es": "Cantad al Señor un cántico nuevo", "la": "Cantate Domino canticum novum" liturgia de las horas.github.io json
General Instruction of the Liturgy of the Hours (official guidelines) | GitHub Actions for Liturgical Data . Some projects don't store static JSON but generate
"date": "2026-05-07", "liturgical_day": "Jueves de la IV semana de Pascua", "hours": "laudes": "invitatorio": "antiphona": "El Señor ha resucitado, aleluya.", "psalmus": "Salmo 94" , "psalmodia": [ "psalm": "Salmo 62", "antiphon": "De madrugada te busco, Señor" , "canticum": "Daniel 3", "antiphon": "Bendito eres, Señor" ], "lectio_brevis": "Romanos 6, 8-9", "oratio": "Oh Dios, que nos alegras cada año..." , "visperas": ... This endpoint computes the proper psalms, antiphons, and
This endpoint computes the proper psalms, antiphons, and readings based on the General Roman Calendar. This is the holy grail for app developers. Given the keyword is in Spanish ( liturgia de las horas ), many JSON schemas offer a bilingual view:
If you have found a .github.io/json endpoint, here is how to integrate it into your project. Step 1: Fetch the Data (JavaScript Example) async function fetchLiturgia(fecha = '2026-05-07') const response = await fetch(`https://example.github.io/liturgia-horas/data/$fecha.json`); if (!response.ok) throw new Error('Liturgia not found for this date'); const data = await response.json(); return data;
In the digital age, the ancient practice of praying the Liturgia de las Horas (Divine Office) has found a new home. While many turn to polished mobile apps or PDFs, a more powerful, flexible, and developer-centric resource has emerged from open-source communities: the Liturgia de las Horas GitHub JSON data sets .