# 데이터 타입

DFINERY의 API는 아래의 데이터 타입을 사용합니다. 사용자가 API를 연동할 때에는 API에서 요구하는 데이터 타입에 맞춰 요청하여야 합니다.

| 타입              | 포맷                           | 예시                                                        |
| --------------- | ---------------------------- | --------------------------------------------------------- |
| String          | -                            | "foo"                                                     |
| Long            | -                            | 1                                                         |
| Double          | -                            | 1.0                                                       |
| Boolean         | -                            | true                                                      |
| Array of String | -                            | \["foo", "bar"]                                           |
| Array of Long   | -                            | \[0, 1]                                                   |
| Array of Double | -                            | \[0.0, 1.0]                                               |
| Datetime        | yyyy-MM-dd'T'HH:mm:ss(.SSS)Z | <p>2023-08-15T12:30:00.000Z,<br>2023-08-15T12:30:00Z,</p> |
| Date            | yyyy-MM-dd                   | 2023-08-15                                                |


---

# 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.dfinery.ai/api-guide/undefined.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.
