# Date and time format

Timestamps are formatted according to [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601), a widely accepted standard for representing date and time information in a consistent manner. For instance:

`2023-12-28T08:36:52.440Z`

In this format:

* `2023-12-28` represents the date (year-month-day)
* `T` separates the date from the time
* `08:36:52.440` represents the time (hour:minute:second.millisecond)
* `Z` indicates that the time is in UTC (Coordinated Universal Time)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.txn.io/api-basics/date-and-time-format.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
