Skip to main content
POST
/
v2
/
utilities
/
current-date
Get Current Date and Time
curl --request POST \
  --url https://api.blitz-api.ai/v2/utilities/current-date \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "region": "America/New_York"
}
'
{
  "datetime": "2026-01-08 12:00:00 -05:00",
  "timestamp": 1736385600,
  "timezone": "America/New_York",
  "timezone_name": "(GMT-05:00) New York"
}

Documentation Index

Fetch the complete documentation index at: https://docs.blitz-api.ai/llms.txt

Use this file to discover all available pages before exploring further.

Agents & LLMs: a Markdown version of this page is available by appending .md to the URL, and the full documentation index is at llms.txt.
Cost: no cost
Get the current date and time in a given timezone.
The timezone is specified in the region parameter. The timezone must be a valid timezone string. You can find the list of valid timezone strings here.

Authorizations

x-api-key
string
header
required

Your Blitz API Key. Get one from https://app.blitz-api.ai

Body

application/json
region
string
required
Example:

"America/New_York"

Response

OK

The response is of type object.