---
title: "Convert a list of UNIX timestamps"
description: "Process every line independently and turn epoch seconds into UTC dates."
---

> Documentation Index
> Fetch the complete documentation index at: https://help.serialize.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Convert a list of UNIX timestamps

import RecipeInstallButton from "../../../components/RecipeInstallButton.astro";

## What it can do

- Split newline-delimited values
- Apply the same operation to each record
- Convert UNIX seconds to readable UTC
- Rejoin results while preserving list order

## Recipe

```text
Fork(newline) → From UNIX Timestamp(seconds)
```

Input:

```text
978346800
1012651200
1046696400
```

This Fork pattern generalizes to hashes, IP addresses, identifiers, and other record-oriented input. Choose a delimiter that cannot appear inside one record.

Source: https://help.serialize.dev/recipes/convert-unix-timestamps/index.mdx
