# Date & Time

All dates and times managed and returned by our API are represented in the Coordinated Universal Time (UTC) timezone and adhere to the ISO 8601 format. [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) is an internationally recognized standard for representing date and time in a human-readable and machine-parsable manner.

### Format

The ISO 8601 format for date and time representation follows this pattern:

`YYYY-MM-DDTHH:mm:ssZ`

Where:

* YYYY represents the 4-digit year
* MM represents the 2-digit month (01-12)
* DD represents the 2-digit day of the month (01-31)
* T is the separator between the date and time components
* HH represents the 2-digit hour (00-23)
* mm represents the 2-digit minute (00-59)
* ss represents the 2-digit second (00-59)
* Z indicates that the date and time are in the Coordinated Universal Time (UTC)

#### Example

An example of a date and time represented in the ISO 8601 format:

`2023-03-21T14:30:00Z`

This represents the date and time: March 21, 2023, 14:30:00 (UTC).


---

# 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.trio.com.br/developers/date-and-time.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.
