# Unix Timestamp Convert — REST API endpoint `unix-timestamp-convert`

Convert between Unix timestamps and ISO dates. Modes: "now", "to_date", "to_timestamp".

- Category: datetime
- MCP server: https://mcp.findutils.com/ (Streamable HTTP, no API keys, 120 req/min per IP)
- REST endpoint: POST https://api.findutils.com/api/tools/unix-timestamp-convert/execute (no API keys, 60 req/min per IP)
- Reference page: https://findutils.com/api/unix-timestamp-convert/
- Same tool on the other surface: https://findutils.com/mcp/unix-timestamp-convert/

## Call the endpoint (verified example)

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

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

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `mode` | string (now \| to_date \| to_timestamp) | yes | Conversion mode. |
| `value` | string | no | Input (timestamp integer for to_date, ISO/date string for to_timestamp). |
| `timezone` | string | no | IANA timezone for to_date (e.g. "Europe/Istanbul"). Defaults to UTC. Default: `"UTC"`. |

Example arguments (verified):

```json
{
  "mode": "to_date",
  "value": "1700000000"
}
```

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

## Also an MCP tool

```bash
claude mcp add findutils --transport http https://mcp.findutils.com/
```

Then ask the client to call `findutils:unix_timestamp_convert`. Full MCP reference: https://findutils.com/mcp/unix-timestamp-convert/

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