> For the complete documentation index, see [llms.txt](https://docs.cascade.io/cascade/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.cascade.io/cascade/functions-and-expressions/functions/conversion/timestamptodate.md).

# TIMESTAMPTODATE

TIMESTAMPTODATE(`timestamp`)&#x20;

Convert an epoch timestamp (number of seconds since 1970/01/01) into a date/time value.

### Arguments

| Argument    | Description                  |
| ----------- | ---------------------------- |
| `timestamp` | Timestamp to convert to date |

### Output

Date/time object corresponding to `timestamp`

### Example

```
TIMESTAMPTODATE("1329968892")
>> "2012-02-23 03:48:12+00:00"
```
