Formatting of date

Here you see how date from JSON can be formatted by twig.
Example of JSON with dates: https://api.json-content-importer.com/extra/json/date.php

For that create a JCI-Template with:

time: {{time}}<br>
time-formatted: {{ time | date("l d.m.Y") }}<br>
date: {{date}}<br>
date-formatted: {{ date | date("l d.m.Y") }}<br>
otherdate: {{otherdate}}<br>
otherdate-formatted: {{ otherdate | date("l d.m.Y H:i:s") }}<br>

Then add [[jsoncontentimporterpro nameoftemplate="dateformatting"]] to a page:

time: 1728279910
time-formatted: Monday 07.10.2024
date: 2022-10-06T00:00:00.000+0000
date-formatted: Thursday 06.10.2022
otherdate: Mon, 07 Oct 24 07:45:10 +0200
otherdate-formatted: Monday 07.10.2024 05:45:10