Skip to content
Utilerio
All endpoints

Unix Timestamp Converter

POST/api/v1/tools/unix-timestamp-converter

Convert between Unix time and human dates in any timezone.

Authentication

Requires an API key in the X-API-Key header.

Try it

POST/api/v1/tools/unix-timestamp-converter

Parameters

timestampstringrequired

Unix timestamp to convert.

unitstringoptional

Input unit. Default auto-detect.

secondsmillisecondsauto

Request body

{
  "timestamp": "1700000000"
}

Response codes

  • 200Success.
  • 400Invalid request — check your body or parameters.
  • 401Missing or invalid API key.
  • 403The API key is not scoped to this endpoint.
  • 429Rate limit exceeded — retry after a short wait.

Language

cURL

Request

curl -X POST https://utilerio.com/api/v1/tools/unix-timestamp-converter \
  -H "X-API-Key: YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"timestamp":"1700000000"}'

Response

{ "iso": "2023-11-14T22:13:20.000Z", "unitDetected": "seconds" }