# Timestamp Format

The iVvy API uses a timestamp format to represent dates and times. Every date used in the API is in UTC. It is up to the consumer of the API to convert the time to the correct timezone of the final recipient of the data. The format is a simple text-based format in the following form:

`yyyy-mm-dd HH:mm:ss UTC`

**Where:**

* 'yyyy' is the 4 digit year of the date,
* 'mm' is the two digit month of the date, where January = 01 and December = 12
* 'dd' is the two digit day of the month,
* 'HH' is the two digit hour,
* 'mm' is the two digit minute, and
* 'ss' is the two digit second
* UTC is optional text at the end

**Examples:**

* 2020-11-24 15:33:46
* 2021-05-13 07:05:33 UTC
* 2019-01-01 21:47:04


---

# 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://developer.ivvy.com/development-reference/timestamp-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.
