GET
/v1/convertUnix Timestamp Converter
Convert between Unix timestamps and ISO-8601.
Part of Unix Timestamp Converter· Rate limits: 60 req/min
Parameters
valuequerystringrequiredUnix seconds/ms or ISO-8601 string
X-SEEKER-KeyheaderstringrequiredYour API Seeker key
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| value | query | string | Yes | Unix seconds/ms or ISO-8601 string |
| X-SEEKER-Key | header | string | Yes | 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
- 400 — Invalid or missing parameters
- 401 — Missing or invalid API key
- 429 — Rate limit exceeded
Try this endpoint
API Playground
Unix Timestamp Converter
Live testing requires an account. Log in or create an API key to send requests. Docs and snippets stay available without login.
GET
unixts.apiseeker.comhttps://unixts.apiseeker.com/v1/convertStatus: —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"