> For the complete documentation index, see [llms.txt](https://docs.ziomark.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ziomark.xyz/get-endpoints/date.md).

# Date

## /date

Returns today's date and time in various formats like dd/mm/YYYY, ISO8601 and UNIX

### Query parameters

`format` EU *or* US

{% hint style="info" %}
Based on the selected format you will get the value **"date"** as follows:

EU: **dd/mm/YYYY**\
US: **YYYY-mm-dd**
{% endhint %}

### Example Response

```
{
    "date": "17/04/2024",
    "time": "21:22:38",
    "iso8601": "2024-04-17T19:22:38.249Z",
    "unix": 1713381758
}
```
