# Timetamp to Date

### /timestamp-to-date

Query Parameters:

* `timestamp` - The [UNIX](https://it.wikipedia.org/wiki/Unix) or [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) timestamp to convert

Example Request:

```
/timestamp-to-date?timestamp=1618154400
/timestamp-to-date?timestamp=2024-04-17T18:49:36Z
```

Example Response:

```
{
    "timestamp": 1618154400,
    "formattedDate": "11/04/2021 00:00"
}
```
