---
title: Get Current Time API
slug: date-now
url: https://apyhub.com/dosvak/service/date-now
provider: Dosvak LLC
categories: [Geolocation, Standard Data]
tags: [time, timestamp, date-time, timezone, utc]
auth: api_key
---

# Get Current Time API

Get the current date and time as ISO and Unix values, with an optional time zone. Useful for scheduling, logging, and timestamp normalisation.

## Endpoints

| Method | Path | Description | Atoms |
| --- | --- | --- | --- |
| GET | `` | What it does Returns the current date and time for the requested timezone as both an ISO string and… | 10 |

## About

## What it does
Current Time returns the current date and time as an ISO string plus a Unix timestamp. Send an optional `tz` query parameter to get the values for a specific time zone; if you omit it, the service uses `UTC`.

Use Current Time when you need a consistent server-side clock in your app, job runner, or integration. It is useful for stamping events, scheduling tasks, comparing timestamps, and normalising time values across services without relying on a client device’s local clock.

The response includes `tz`, `iso`, and `unix`. `iso` gives you the current date-time in a standard string format, while `unix` gives you the same moment as an integer timestamp. That makes it easy to store, display, or pass the value into downstream systems that expect either human-readable or machine-friendly time data.

If your workflow needs a simple way to read the current time in a known zone, Current Time keeps the response minimal and predictable.

## Usage

Authenticate with an ApyHub API key in the `apy-token` header.
Full docs and a live playground: https://apyhub.com/dosvak/service/date-now
