# Unix Timestamp Converter — REST API endpoint `unix-timestamp`

Convert Unix timestamps to human-readable dates and vice versa.

- Category: datetime
- REST endpoint: POST https://api.findutils.com/api/tools/unix-timestamp/execute (no API keys, 60 req/min per IP)
- MCP: not exposed on the MCP server. See https://findutils.com/mcp/ for the tools that are.
- Reference page: https://findutils.com/api/unix-timestamp/

## Call the endpoint (verified example)

```bash
curl -X POST https://api.findutils.com/api/tools/unix-timestamp/execute \
  -H "Content-Type: application/json" \
  -d '{
    "action": "to_date",
    "value": "1704067200"
  }'

# Parameter schema
curl https://api.findutils.com/api/tools/unix-timestamp
```

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `action` | string (to_date \| to_timestamp \| now) | yes | "to_date": timestamp -> date string \| "to_timestamp": date string -> timestamp \| "now": current timestamp |
| `value` | string | no | Unix timestamp (seconds or ms) or ISO date string. Not needed for "now". |

Example arguments (verified):

```json
{
  "action": "to_date",
  "value": "1704067200"
}
```

OpenAPI 3.1 spec: https://findutils.com/api/openapi.json · Interactive docs: https://findutils.com/api/docs/

---
Full catalog: GET https://api.findutils.com/api/tools · https://findutils.com/api/ · https://findutils.com/llms.txt
