Skip to content
APISeeker
GET/v1/convert

Unix Timestamp Converter

Convert between Unix timestamps and ISO-8601.

Part of Unix Timestamp Converter· Rate limits: 60 req/min

Parameters

  • valuequerystringrequired

    Unix seconds/ms or ISO-8601 string

  • X-SEEKER-Keyheaderstringrequired

    Your API Seeker key

Code examples

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

Response

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

Errors

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

Try this endpoint

API Playground

Unix Timestamp Converter

Login required
Live testing requires an account. Log in or create an API key to send requests. Docs and snippets stay available without login.
GETunixts.apiseeker.com
https://unixts.apiseeker.com/v1/convert
Log in to test endpoint
Status: Latency:

Response headers

Log in to run a test and see headers.

Response body

Log in required for live testing.

Generated snippets

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