# Timestamp Converter - Unix, ISO, RFC 2822, Any Timezone — examp

**Use case:** 

Any timestamp shape in (unix s/ms auto-detected, ISO, "now") — every form out: unix, ISO 8601, RFC 2822, DST-correct IANA timezone rendering, real ISO week numbers, day-of-year, leap flag, relative time. $0.0004 per conversion (cost-plus floor, no paid rival measured); bad inputs never charged.

## Input

```json
{
  "input": "1516239022",
  "inputs": [],
  "timezone": "UTC",
  "maxItems": 50
}
```

## Output

```json
{
  "ok": {
    "label": "Ok",
    "format": "boolean"
  },
  "isLeapYear": {
    "label": "Is Leap Year",
    "format": "boolean"
  },
  "unixSeconds": {
    "label": "Unix Seconds",
    "format": "number"
  },
  "unixMillis": {
    "label": "Unix Millis",
    "format": "number"
  },
  "dayOfYear": {
    "label": "Day Of Year",
    "format": "number"
  },
  "weekNumber": {
    "label": "Week Number",
    "format": "number"
  },
  "input": {
    "label": "Input",
    "format": "date"
  },
  "timezone": {
    "label": "Timezone",
    "format": "text"
  },
  "iso8601": {
    "label": "Iso8601",
    "format": "date"
  },
  "rfc2822": {
    "label": "Rfc2822",
    "format": "text"
  },
  "utcString": {
    "label": "Utc String",
    "format": "text"
  },
  "timezoneFormatted": {
    "label": "Timezone Formatted",
    "format": "text"
  },
  "dayOfWeek": {
    "label": "Day Of Week",
    "format": "text"
  },
  "relativeFromNow": {
    "label": "Relative From Now",
    "format": "text"
  },
  "relative": {
    "label": "Relative",
    "format": "text"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Timestamp Converter - Unix, ISO, RFC 2822, Any Timezone](https://apify.com/eliai/timestamp-converter.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/eliai/timestamp-converter.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/eliai/timestamp-converter.md

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).
