LECTURAS DEL DÍA

Sábado 3 De Octubre De 2026 - de la feria


PRIMERA LECTURA:

_<!DOCTYPE html>

<title>Reader Evangelizo</title>
Error : wrong param « date » !! Must be less than 30 days from today ...

NAME

« Reader Evangelizo »

SYNOPSIS

http://feed.evangelizo.org/v2/reader.php [params...]

RETURN VALUE

The « Reader Evangelizo » script return a string with the content requested by "type" parameter
The returned string will be encoded as following :
  • UTF-8: for any param "lang"

DESCRIPTION

This manual page documents the « Reader Feed v2.0 » for EVANGELIZO.ORG.
With the « Reader Evangelizo » you can get all texts provided by evangelizo.org web service. The « Reader Evangelizo » will help you to display daily reading in your website, or saint of the day .. etc
The « Reader Evangelizo » is used as any PHP file on a website, with params like : file.php?param1=1&param2=2

PARAMETERS

Usage : http://feed.evangelizo.org/v2/reader.php?param1=«value1»&<font color=blue>param2=«value2»br />

date Must be formatted like YYYYMMDD. Can not exceed 30 days from today.

type Inform about what you want to get
                    - « saint » : to get the saint of the day (with link to life)
                    - « feast » : to get the feast of the day, if there is one (with link to explanation)
                    - « liturgic_t » : to get the liturgic title
                    - « reading_lt » : to get the long title of the reading
                    - « reading_st » : to get the short title of the reading
                    - « reading » : to get the text of the reading
                    - « audio » : to get the URL of audio file if exist
                    - « all » : to get all the readings of the day
                    - « comment_t » : to get the title of the commentary
                    - « comment_a » : to get the author of the commentary
                    - « comment_s » : to get the source of the commentary
                    - « comment » : to get the text of the commentary
                    - « xml » : to get all infos of the day in XML format

lang Tells the language to display and the liturgical calendar to use
          for Roman Ordinary Calendar :
                    - « AM » : for american-us language and Roman Ordinary Calendar
                    - « AR » : for arabic language and Roman Ordinary Calendar
                    - « DE » : for german language and Roman Ordinary Calendar
                    - « FR » : for french language and Roman Ordinary Calendar
                    - « GR » : for greek (hellenic) language and Roman Ordinary Calendar
                    - « IT » : for italian language and Roman Ordinary Calendar
                    - « MG » : for malagasy language and Roman Ordinary Calendar
                    - « NL » : for dutch language and Roman Ordinary Calendar
                    - « PL » : for polish language and Roman Ordinary Calendar
                    - « PT » : for portuges language and Roman Ordinary Calendar
                    - « SP » : for spanish language and Roman Ordinary Calendar
          for other catholics calendars forms :
                    - « ARM » : for armenian language and armenian calendar
                    - « BYA » : for arabic language and byzantine calendar
                    - « COA » : for arabic language and copte calendar
                    - « MAA » : for arabic language and maronite calendar
                    - « SYA » : for arabic language and syriac calendar
                    - « TRA » : for american-us language and Roman extraordinary calendar
                    - « TRD » : for german language and Roman extraordinary calendar
                    - « TRF » : for french language and Roman extraordinary calendar
                    - « TRS » : for spanish language and Roman extraordinary calendar

content Tells the lecture you want to get
          for Roman calendar Ordinary form :
                    - « FR » : for the first lecture
                    - « PS » : for the psalm
                    - « SR » : for the second lecture
                    - « GSP » : for the gospel
          for other catholics calendars forms :
                    - « EP » : for the epistle
                    - « GSP » : for the gospel

EXAMPLES

    type date lang content url example
To get the saint of a day   saint yyyymmdd Ordinary forms
AM, AR, DE, FR,
GR, IT, NL, PL,
PT, SP


Other forms
ARM, BYA, MAA,
TRF, TRA
Ordinary forms
 FR,PS,SR,GSP



Other forms
EP,GSP
http://feed.evangelizo.org/v2/reader.php?date=20190427&type=saint&lang=IT
To get the feast of a day   feast http://feed.evangelizo.org/v2/reader.php?date=20190427&type=feast&lang=AM
To get the liturgic title of a day  all  liturgic_t http://feed.evangelizo.org/v2/reader.php?date=20190427&type=liturgic_t&lang=FR
To get the long reading title of a day reading_lt http://feed.evangelizo.org/v2/reader.php?date=20190427&type=reading_lt&lang=SP&content=FR
To get the short reading title of a day reading_st http://feed.evangelizo.org/v2/reader.php?date=20190427&type=reading_st&lang=TRF&content=EP
To get the text of the reading of a day reading http://feed.evangelizo.org/v2/reader.php?date=20190427&type=reading&lang=DE&content=GSP
To get the commentary title of a day   comment_t http://feed.evangelizo.org/v2/reader.php?date=20190427&type=comment_t&lang=PT
To get the commentary author of a day   comment_a http://feed.evangelizo.org/v2/reader.php?date=20190427&type=comment_a&lang=FR
To get the commentary source of a day   comment_s http://feed.evangelizo.org/v2/reader.php?date=20190427&type=comment_s&lang=PL
To get the commentary text of a day   comment http://feed.evangelizo.org/v2/reader.php?date=20190427&type=comment&lang=MAA


PHP example
   $today = date('Ymd');
   $url = "http://feed.evangelizo.org/v2/reader.php?date=$today&type=comment&lang=FR";
   $h = fopen($url,"r");
   while (!feof($h)) {
     $str .= fgets($h);
   }
   print $str;

Javascript example 1

   <html>
   <head>
     <title>Exemple d'affichage de fichier texte</title>
     <script language="javascript" type="text/javascript">
       function displayTextFile(filePath){
         iframe = document.getElementsByName('textDisplay')[0];
         iframe.src=filePath;
         iframe.style.display="block";
       }
     </script>
   </head>
   <body>
     <iframe id="textDisplay" name="textDisplay" src="" style="width: 400px; height: 240px; display: none;"></iframe>
     <script>
       var currentTime = new Date();
       var month = currentTime.getMonth() + 1;
       var day = currentTime.getDate();
       var year = currentTime.getFullYear();
       if (day < 10) day = '0'+day;
       if (month < 10) month = '0'+month;
       displayTextFile('http://feed.evangelizo.org/v2/reader.php?date='+year+month+day+'&type=reading&lang=FR&content=GSP');
     </script>
   </body>
   </html>





Test it online !

        What:
        <select name="type" id="tryType">
            <option value="all">all</option>
            <option value="saint">saint</option>
            <option value="feast">feast</option>
            <option value="liturgic_t">liturgic title</option>
            <option value="reading_lt">long reading title</option>
            <option value="reading_st">short reading title</option>
            <option value="reading" selected>text of the reading</option>
            <option value="audio">audio link of the reading</option>
            <option value="comment_t">commentary title</option>
            <option value="comment_a">commentary author</option>
            <option value="comment_s">commentary source</option>
            <option value="comment">commentary text</option>
        </select>

        Date:
        <select name="date" id="tryDate">
                                <option value="20260831" >Monday 31 August 2026</option>
                                <option value="20260901" >Tuesday 1 September 2026</option>
                                <option value="20260902" >Wednesday 2 September 2026</option>
                                <option value="20260903" >Thursday 3 September 2026</option>
                                <option value="20260904" >Friday 4 September 2026</option>
                                <option value="20260905" >Saturday 5 September 2026</option>
                                <option value="20260906" >Sunday 6 September 2026</option>
                                <option value="20260907" >Monday 7 September 2026</option>
                                <option value="20260908" >Tuesday 8 September 2026</option>
                                <option value="20260909" >Wednesday 9 September 2026</option>
                                <option value="20260910" >Thursday 10 September 2026</option>
                                <option value="20260911" >Friday 11 September 2026</option>
                                <option value="20260912" >Saturday 12 September 2026</option>
                                <option value="20260913" >Sunday 13 September 2026</option>
                                <option value="20260914" >Monday 14 September 2026</option>
                                <option value="20260915" >Tuesday 15 September 2026</option>
                                <option value="20260916" >Wednesday 16 September 2026</option>
                                <option value="20260917" >Thursday 17 September 2026</option>
                                <option value="20260918" >Friday 18 September 2026</option>
                                <option value="20260919" >Saturday 19 September 2026</option>
                                <option value="20260920" >Sunday 20 September 2026</option>
                                <option value="20260921" >Monday 21 September 2026</option>
                                <option value="20260922" >Tuesday 22 September 2026</option>
                                <option value="20260923" >Wednesday 23 September 2026</option>
                                <option value="20260924" >Thursday 24 September 2026</option>
                                <option value="20260925" >Friday 25 September 2026</option>
                                <option value="20260926" >Saturday 26 September 2026</option>
                                <option value="20260927" >Sunday 27 September 2026</option>
                                <option value="20260928" >Monday 28 September 2026</option>
                                <option value="20260929" >Tuesday 29 September 2026</option>
                                <option value="20260930" >Wednesday 30 September 2026</option>
                        </select>

        Lang:
        <select name="lang" id="tryLang">
                                <option>AM</option>
                                <option>AR</option>
                                <option>ARM</option>
                                <option>BYA</option>
                                <option>BYE</option>
                                <option>CHA</option>
                                <option>COA</option>
                                <option>DE</option>
                                <option>FR</option>
                                <option>GR</option>
                                <option>IT</option>
                                <option>MAA</option>
                                <option>MAF</option>
                                <option>MG</option>
                                <option>NL</option>
                                <option>PL</option>
                                <option>PT</option>
                                <option>SP</option>
                                <option>SYA</option>
                                <option>SYE</option>
                                <option>TR</option>
                                <option>TRA</option>
                                <option>TRD</option>
                                <option>TRF</option>
                                <option>TRS</option>
                        </select>

        Content (optional):
        <select name="content" id="tryContent">
            <option value="">--</option>
            <option value="FR">first lecture</option>
            <option value="PS">psalm</option>
            <option value="SR">second lecture</option>
            <option value="GSP" selected>gospel</option>
            <option value="EP">epistle</option>
        </select>

        <button type="button" id="submitTry">Submit</button>


    </form>

    <br/><br/>

    <div id="tryUrlResult" style="background-color:#cafcca; border:1px solid #333; width: 70%; margin:auto; margin-bottom:1em; padding:1em; display: none;"></div>
    <iframe id="textDisplay" name="textDisplay" src="" style="background-color:#cacafc; border:1px solid #333; width: 70%; margin:auto; margin-bottom:4em; padding:1em; display: none;"></iframe>
</div>
<br/><br/>
_
SALMO RESPONSORIAL:

_<!DOCTYPE html>

<title>Reader Evangelizo</title>
Error : wrong param « date » !! Must be less than 30 days from today ...

NAME

« Reader Evangelizo »

SYNOPSIS

http://feed.evangelizo.org/v2/reader.php [params...]

RETURN VALUE

The « Reader Evangelizo » script return a string with the content requested by "type" parameter
The returned string will be encoded as following :
  • UTF-8: for any param "lang"

DESCRIPTION

This manual page documents the « Reader Feed v2.0 » for EVANGELIZO.ORG.
With the « Reader Evangelizo » you can get all texts provided by evangelizo.org web service. The « Reader Evangelizo » will help you to display daily reading in your website, or saint of the day .. etc
The « Reader Evangelizo » is used as any PHP file on a website, with params like : file.php?param1=1&param2=2

PARAMETERS

Usage : http://feed.evangelizo.org/v2/reader.php?param1=«value1»&<font color=blue>param2=«value2»br />

date Must be formatted like YYYYMMDD. Can not exceed 30 days from today.

type Inform about what you want to get
                    - « saint » : to get the saint of the day (with link to life)
                    - « feast » : to get the feast of the day, if there is one (with link to explanation)
                    - « liturgic_t » : to get the liturgic title
                    - « reading_lt » : to get the long title of the reading
                    - « reading_st » : to get the short title of the reading
                    - « reading » : to get the text of the reading
                    - « audio » : to get the URL of audio file if exist
                    - « all » : to get all the readings of the day
                    - « comment_t » : to get the title of the commentary
                    - « comment_a » : to get the author of the commentary
                    - « comment_s » : to get the source of the commentary
                    - « comment » : to get the text of the commentary
                    - « xml » : to get all infos of the day in XML format

lang Tells the language to display and the liturgical calendar to use
          for Roman Ordinary Calendar :
                    - « AM » : for american-us language and Roman Ordinary Calendar
                    - « AR » : for arabic language and Roman Ordinary Calendar
                    - « DE » : for german language and Roman Ordinary Calendar
                    - « FR » : for french language and Roman Ordinary Calendar
                    - « GR » : for greek (hellenic) language and Roman Ordinary Calendar
                    - « IT » : for italian language and Roman Ordinary Calendar
                    - « MG » : for malagasy language and Roman Ordinary Calendar
                    - « NL » : for dutch language and Roman Ordinary Calendar
                    - « PL » : for polish language and Roman Ordinary Calendar
                    - « PT » : for portuges language and Roman Ordinary Calendar
                    - « SP » : for spanish language and Roman Ordinary Calendar
          for other catholics calendars forms :
                    - « ARM » : for armenian language and armenian calendar
                    - « BYA » : for arabic language and byzantine calendar
                    - « COA » : for arabic language and copte calendar
                    - « MAA » : for arabic language and maronite calendar
                    - « SYA » : for arabic language and syriac calendar
                    - « TRA » : for american-us language and Roman extraordinary calendar
                    - « TRD » : for german language and Roman extraordinary calendar
                    - « TRF » : for french language and Roman extraordinary calendar
                    - « TRS » : for spanish language and Roman extraordinary calendar

content Tells the lecture you want to get
          for Roman calendar Ordinary form :
                    - « FR » : for the first lecture
                    - « PS » : for the psalm
                    - « SR » : for the second lecture
                    - « GSP » : for the gospel
          for other catholics calendars forms :
                    - « EP » : for the epistle
                    - « GSP » : for the gospel

EXAMPLES

    type date lang content url example
To get the saint of a day   saint yyyymmdd Ordinary forms
AM, AR, DE, FR,
GR, IT, NL, PL,
PT, SP


Other forms
ARM, BYA, MAA,
TRF, TRA
Ordinary forms
 FR,PS,SR,GSP



Other forms
EP,GSP
http://feed.evangelizo.org/v2/reader.php?date=20190427&type=saint&lang=IT
To get the feast of a day   feast http://feed.evangelizo.org/v2/reader.php?date=20190427&type=feast&lang=AM
To get the liturgic title of a day  all  liturgic_t http://feed.evangelizo.org/v2/reader.php?date=20190427&type=liturgic_t&lang=FR
To get the long reading title of a day reading_lt http://feed.evangelizo.org/v2/reader.php?date=20190427&type=reading_lt&lang=SP&content=FR
To get the short reading title of a day reading_st http://feed.evangelizo.org/v2/reader.php?date=20190427&type=reading_st&lang=TRF&content=EP
To get the text of the reading of a day reading http://feed.evangelizo.org/v2/reader.php?date=20190427&type=reading&lang=DE&content=GSP
To get the commentary title of a day   comment_t http://feed.evangelizo.org/v2/reader.php?date=20190427&type=comment_t&lang=PT
To get the commentary author of a day   comment_a http://feed.evangelizo.org/v2/reader.php?date=20190427&type=comment_a&lang=FR
To get the commentary source of a day   comment_s http://feed.evangelizo.org/v2/reader.php?date=20190427&type=comment_s&lang=PL
To get the commentary text of a day   comment http://feed.evangelizo.org/v2/reader.php?date=20190427&type=comment&lang=MAA


PHP example
   $today = date('Ymd');
   $url = "http://feed.evangelizo.org/v2/reader.php?date=$today&type=comment&lang=FR";
   $h = fopen($url,"r");
   while (!feof($h)) {
     $str .= fgets($h);
   }
   print $str;

Javascript example 1

   <html>
   <head>
     <title>Exemple d'affichage de fichier texte</title>
     <script language="javascript" type="text/javascript">
       function displayTextFile(filePath){
         iframe = document.getElementsByName('textDisplay')[0];
         iframe.src=filePath;
         iframe.style.display="block";
       }
     </script>
   </head>
   <body>
     <iframe id="textDisplay" name="textDisplay" src="" style="width: 400px; height: 240px; display: none;"></iframe>
     <script>
       var currentTime = new Date();
       var month = currentTime.getMonth() + 1;
       var day = currentTime.getDate();
       var year = currentTime.getFullYear();
       if (day < 10) day = '0'+day;
       if (month < 10) month = '0'+month;
       displayTextFile('http://feed.evangelizo.org/v2/reader.php?date='+year+month+day+'&type=reading&lang=FR&content=GSP');
     </script>
   </body>
   </html>





Test it online !

        What:
        <select name="type" id="tryType">
            <option value="all">all</option>
            <option value="saint">saint</option>
            <option value="feast">feast</option>
            <option value="liturgic_t">liturgic title</option>
            <option value="reading_lt">long reading title</option>
            <option value="reading_st">short reading title</option>
            <option value="reading" selected>text of the reading</option>
            <option value="audio">audio link of the reading</option>
            <option value="comment_t">commentary title</option>
            <option value="comment_a">commentary author</option>
            <option value="comment_s">commentary source</option>
            <option value="comment">commentary text</option>
        </select>

        Date:
        <select name="date" id="tryDate">
                                <option value="20260831" >Monday 31 August 2026</option>
                                <option value="20260901" >Tuesday 1 September 2026</option>
                                <option value="20260902" >Wednesday 2 September 2026</option>
                                <option value="20260903" >Thursday 3 September 2026</option>
                                <option value="20260904" >Friday 4 September 2026</option>
                                <option value="20260905" >Saturday 5 September 2026</option>
                                <option value="20260906" >Sunday 6 September 2026</option>
                                <option value="20260907" >Monday 7 September 2026</option>
                                <option value="20260908" >Tuesday 8 September 2026</option>
                                <option value="20260909" >Wednesday 9 September 2026</option>
                                <option value="20260910" >Thursday 10 September 2026</option>
                                <option value="20260911" >Friday 11 September 2026</option>
                                <option value="20260912" >Saturday 12 September 2026</option>
                                <option value="20260913" >Sunday 13 September 2026</option>
                                <option value="20260914" >Monday 14 September 2026</option>
                                <option value="20260915" >Tuesday 15 September 2026</option>
                                <option value="20260916" >Wednesday 16 September 2026</option>
                                <option value="20260917" >Thursday 17 September 2026</option>
                                <option value="20260918" >Friday 18 September 2026</option>
                                <option value="20260919" >Saturday 19 September 2026</option>
                                <option value="20260920" >Sunday 20 September 2026</option>
                                <option value="20260921" >Monday 21 September 2026</option>
                                <option value="20260922" >Tuesday 22 September 2026</option>
                                <option value="20260923" >Wednesday 23 September 2026</option>
                                <option value="20260924" >Thursday 24 September 2026</option>
                                <option value="20260925" >Friday 25 September 2026</option>
                                <option value="20260926" >Saturday 26 September 2026</option>
                                <option value="20260927" >Sunday 27 September 2026</option>
                                <option value="20260928" >Monday 28 September 2026</option>
                                <option value="20260929" >Tuesday 29 September 2026</option>
                                <option value="20260930" >Wednesday 30 September 2026</option>
                        </select>

        Lang:
        <select name="lang" id="tryLang">
                                <option>AM</option>
                                <option>AR</option>
                                <option>ARM</option>
                                <option>BYA</option>
                                <option>BYE</option>
                                <option>CHA</option>
                                <option>COA</option>
                                <option>DE</option>
                                <option>FR</option>
                                <option>GR</option>
                                <option>IT</option>
                                <option>MAA</option>
                                <option>MAF</option>
                                <option>MG</option>
                                <option>NL</option>
                                <option>PL</option>
                                <option>PT</option>
                                <option>SP</option>
                                <option>SYA</option>
                                <option>SYE</option>
                                <option>TR</option>
                                <option>TRA</option>
                                <option>TRD</option>
                                <option>TRF</option>
                                <option>TRS</option>
                        </select>

        Content (optional):
        <select name="content" id="tryContent">
            <option value="">--</option>
            <option value="FR">first lecture</option>
            <option value="PS">psalm</option>
            <option value="SR">second lecture</option>
            <option value="GSP" selected>gospel</option>
            <option value="EP">epistle</option>
        </select>

        <button type="button" id="submitTry">Submit</button>


    </form>

    <br/><br/>

    <div id="tryUrlResult" style="background-color:#cafcca; border:1px solid #333; width: 70%; margin:auto; margin-bottom:1em; padding:1em; display: none;"></div>
    <iframe id="textDisplay" name="textDisplay" src="" style="background-color:#cacafc; border:1px solid #333; width: 70%; margin:auto; margin-bottom:4em; padding:1em; display: none;"></iframe>
</div>
<br/><br/>
_
EVANGELIO:

_Evangelio según San (OCTYPE html>

<title>Reader Evangelizo</title>
Error : wrong param « date » !! Must be less than 30 days from today ...

NAME

« Reader Evangelizo »

SYNOPSIS

http://feed.evangelizo.org/v2/reader.php [params...]

RETURN VALUE

The « Reader Evangelizo » script return a string with the content requested by "type" parameter
The returned string will be encoded as following :
  • UTF-8: for any param "lang"

DESCRIPTION

This manual page documents the « Reader Feed v2.0 » for EVANGELIZO.ORG.
With the « Reader Evangelizo » you can get all texts provided by evangelizo.org web service. The « Reader Evangelizo » will help you to display daily reading in your website, or saint of the day .. etc
The « Reader Evangelizo » is used as any PHP file on a website, with params like : file.php?param1=1&param2=2

PARAMETERS

Usage : http://feed.evangelizo.org/v2/reader.php?param1=«value1»&<font color=blue>param2=«value2»br />

date Must be formatted like YYYYMMDD. Can not exceed 30 days from today.

type Inform about what you want to get
                    - « saint » : to get the saint of the day (with link to life)
                    - « feast » : to get the feast of the day, if there is one (with link to explanation)
                    - « liturgic_t » : to get the liturgic title
                    - « reading_lt » : to get the long title of the reading
                    - « reading_st » : to get the short title of the reading
                    - « reading » : to get the text of the reading
                    - « audio » : to get the URL of audio file if exist
                    - « all » : to get all the readings of the day
                    - « comment_t » : to get the title of the commentary
                    - « comment_a » : to get the author of the commentary
                    - « comment_s » : to get the source of the commentary
                    - « comment » : to get the text of the commentary
                    - « xml » : to get all infos of the day in XML format

lang Tells the language to display and the liturgical calendar to use
          for Roman Ordinary Calendar :
                    - « AM » : for american-us language and Roman Ordinary Calendar
                    - « AR » : for arabic language and Roman Ordinary Calendar
                    - « DE » : for german language and Roman Ordinary Calendar
                    - « FR » : for french language and Roman Ordinary Calendar
                    - « GR » : for greek (hellenic) language and Roman Ordinary Calendar
                    - « IT » : for italian language and Roman Ordinary Calendar
                    - « MG » : for malagasy language and Roman Ordinary Calendar
                    - « NL » : for dutch language and Roman Ordinary Calendar
                    - « PL » : for polish language and Roman Ordinary Calendar
                    - « PT » : for portuges language and Roman Ordinary Calendar
                    - « SP » : for spanish language and Roman Ordinary Calendar
          for other catholics calendars forms :
                    - « ARM » : for armenian language and armenian calendar
                    - « BYA » : for arabic language and byzantine calendar
                    - « COA » : for arabic language and copte calendar
                    - « MAA » : for arabic language and maronite calendar
                    - « SYA » : for arabic language and syriac calendar
                    - « TRA » : for american-us language and Roman extraordinary calendar
                    - « TRD » : for german language and Roman extraordinary calendar
                    - « TRF » : for french language and Roman extraordinary calendar
                    - « TRS » : for spanish language and Roman extraordinary calendar

content Tells the lecture you want to get
          for Roman calendar Ordinary form :
                    - « FR » : for the first lecture
                    - « PS » : for the psalm
                    - « SR » : for the second lecture
                    - « GSP » : for the gospel
          for other catholics calendars forms :
                    - « EP » : for the epistle
                    - « GSP » : for the gospel

EXAMPLES

    type date lang content url example
To get the saint of a day   saint yyyymmdd Ordinary forms
AM, AR, DE, FR,
GR, IT, NL, PL,
PT, SP


Other forms
ARM, BYA, MAA,
TRF, TRA
Ordinary forms
 FR,PS,SR,GSP



Other forms
EP,GSP
http://feed.evangelizo.org/v2/reader.php?date=20190427&type=saint&lang=IT
To get the feast of a day   feast http://feed.evangelizo.org/v2/reader.php?date=20190427&type=feast&lang=AM
To get the liturgic title of a day  all  liturgic_t http://feed.evangelizo.org/v2/reader.php?date=20190427&type=liturgic_t&lang=FR
To get the long reading title of a day reading_lt http://feed.evangelizo.org/v2/reader.php?date=20190427&type=reading_lt&lang=SP&content=FR
To get the short reading title of a day reading_st http://feed.evangelizo.org/v2/reader.php?date=20190427&type=reading_st&lang=TRF&content=EP
To get the text of the reading of a day reading http://feed.evangelizo.org/v2/reader.php?date=20190427&type=reading&lang=DE&content=GSP
To get the commentary title of a day   comment_t http://feed.evangelizo.org/v2/reader.php?date=20190427&type=comment_t&lang=PT
To get the commentary author of a day   comment_a http://feed.evangelizo.org/v2/reader.php?date=20190427&type=comment_a&lang=FR
To get the commentary source of a day   comment_s http://feed.evangelizo.org/v2/reader.php?date=20190427&type=comment_s&lang=PL
To get the commentary text of a day   comment http://feed.evangelizo.org/v2/reader.php?date=20190427&type=comment&lang=MAA


PHP example
   $today = date('Ymd');
   $url = "http://feed.evangelizo.org/v2/reader.php?date=$today&type=comment&lang=FR";
   $h = fopen($url,"r");
   while (!feof($h)) {
     $str .= fgets($h);
   }
   print $str;

Javascript example 1

   <html>
   <head>
     <title>Exemple d'affichage de fichier texte</title>
     <script language="javascript" type="text/javascript">
       function displayTextFile(filePath){
         iframe = document.getElementsByName('textDisplay')[0];
         iframe.src=filePath;
         iframe.style.display="block";
       }
     </script>
   </head>
   <body>
     <iframe id="textDisplay" name="textDisplay" src="" style="width: 400px; height: 240px; display: none;"></iframe>
     <script>
       var currentTime = new Date();
       var month = currentTime.getMonth() + 1;
       var day = currentTime.getDate();
       var year = currentTime.getFullYear();
       if (day < 10) day = '0'+day;
       if (month < 10) month = '0'+month;
       displayTextFile('http://feed.evangelizo.org/v2/reader.php?date='+year+month+day+'&type=reading&lang=FR&content=GSP');
     </script>
   </body>
   </html>





Test it online !

        What:
        <select name="type" id="tryType">
            <option value="all">all</option>
            <option value="saint">saint</option>
            <option value="feast">feast</option>
            <option value="liturgic_t">liturgic title</option>
            <option value="reading_lt">long reading title</option>
            <option value="reading_st">short reading title</option>
            <option value="reading" selected>text of the reading</option>
            <option value="audio">audio link of the reading</option>
            <option value="comment_t">commentary title</option>
            <option value="comment_a">commentary author</option>
            <option value="comment_s">commentary source</option>
            <option value="comment">commentary text</option>
        </select>

        Date:
        <select name="date" id="tryDate">
                                <option value="20260831" >Monday 31 August 2026</option>
                                <option value="20260901" >Tuesday 1 September 2026</option>
                                <option value="20260902" >Wednesday 2 September 2026</option>
                                <option value="20260903" >Thursday 3 September 2026</option>
                                <option value="20260904" >Friday 4 September 2026</option>
                                <option value="20260905" >Saturday 5 September 2026</option>
                                <option value="20260906" >Sunday 6 September 2026</option>
                                <option value="20260907" >Monday 7 September 2026</option>
                                <option value="20260908" >Tuesday 8 September 2026</option>
                                <option value="20260909" >Wednesday 9 September 2026</option>
                                <option value="20260910" >Thursday 10 September 2026</option>
                                <option value="20260911" >Friday 11 September 2026</option>
                                <option value="20260912" >Saturday 12 September 2026</option>
                                <option value="20260913" >Sunday 13 September 2026</option>
                                <option value="20260914" >Monday 14 September 2026</option>
                                <option value="20260915" >Tuesday 15 September 2026</option>
                                <option value="20260916" >Wednesday 16 September 2026</option>
                                <option value="20260917" >Thursday 17 September 2026</option>
                                <option value="20260918" >Friday 18 September 2026</option>
                                <option value="20260919" >Saturday 19 September 2026</option>
                                <option value="20260920" >Sunday 20 September 2026</option>
                                <option value="20260921" >Monday 21 September 2026</option>
                                <option value="20260922" >Tuesday 22 September 2026</option>
                                <option value="20260923" >Wednesday 23 September 2026</option>
                                <option value="20260924" >Thursday 24 September 2026</option>
                                <option value="20260925" >Friday 25 September 2026</option>
                                <option value="20260926" >Saturday 26 September 2026</option>
                                <option value="20260927" >Sunday 27 September 2026</option>
                                <option value="20260928" >Monday 28 September 2026</option>
                                <option value="20260929" >Tuesday 29 September 2026</option>
                                <option value="20260930" >Wednesday 30 September 2026</option>
                        </select>

        Lang:
        <select name="lang" id="tryLang">
                                <option>AM</option>
                                <option>AR</option>
                                <option>ARM</option>
                                <option>BYA</option>
                                <option>BYE</option>
                                <option>CHA</option>
                                <option>COA</option>
                                <option>DE</option>
                                <option>FR</option>
                                <option>GR</option>
                                <option>IT</option>
                                <option>MAA</option>
                                <option>MAF</option>
                                <option>MG</option>
                                <option>NL</option>
                                <option>PL</option>
                                <option>PT</option>
                                <option>SP</option>
                                <option>SYA</option>
                                <option>SYE</option>
                                <option>TR</option>
                                <option>TRA</option>
                                <option>TRD</option>
                                <option>TRF</option>
                                <option>TRS</option>
                        </select>

        Content (optional):
        <select name="content" id="tryContent">
            <option value="">--</option>
            <option value="FR">first lecture</option>
            <option value="PS">psalm</option>
            <option value="SR">second lecture</option>
            <option value="GSP" selected>gospel</option>
            <option value="EP">epistle</option>
        </select>

        <button type="button" id="submitTry">Submit</button>


    </form>

    <br/><br/>

    <div id="tryUrlResult" style="background-color:#cafcca; border:1px solid #333; width: 70%; margin:auto; margin-bottom:1em; padding:1em; display: none;"></div>
    <iframe id="textDisplay" name="textDisplay" src="" style="background-color:#cacafc; border:1px solid #333; width: 70%; margin:auto; margin-bottom:4em; padding:1em; display: none;"></iframe>
</div>
<br/><br/>
Siguiente