Skip to content
APISeeker
Free API60 req/minDeveloper Tools

Unix Timestamp Converter

Convert epoch seconds/ms to ISO strings or parse ISO to epoch.

By RSM DevOps

Public endpoint

GETunixts.apiseeker.com
/v1/convert

Auth: X-SEEKER-Key

Endpoint

Numeric values ≤ 1e12 treated as seconds; larger as milliseconds.

Method

GET

Path

/v1/convert

Full URL

https://unixts.apiseeker.com/v1/convert

Authentication

Send X-SEEKER-Key on every request. Free tools still require a valid APISeeker key — no auth bypass.

Parameters

  • valuequerystringrequired

    Unix seconds/ms or ISO-8601 string

Request example

cURL
curl -s "https://unixts.apiseeker.com/v1/convert?value=1710000000" \
  -H "X-SEEKER-Key: YOUR_API_KEY"

Response example

JSON
{
  "success": true,
  "data": {
    "input": "1710000000",
    "iso": "2024-03-09T16:00:00.000Z",
    "unixSeconds": 1710000000,
    "unixMs": 1710000000000
  },
  "request_id": "req_example"
}

Errors & limits

  • 400Invalid or missing parameters
  • 401Missing or invalid API key
  • 429Rate limit exceeded

Rate limit: 60 req/min

Playground

Live playground

Unix Timestamp Converter

Login required

Sign in to send live requests. Docs and URL preview stay open. Log in

GETRequest URL
https://unixts.apiseeker.com/v1/convert?value=1710000000
Log in to test endpoint
Status: Latency:

Response

Response will appear here after you send a request.

Related tools

FAQ