# Response (tx by address)

#### Response (tx by address) `200 OK, application/json` <a href="#response-tx-by-address-200-ok-applicationjson" id="response-tx-by-address-200-ok-applicationjson"></a>

A transaction list with the following parameters is returned:

| Parameter     | Type   | Description                                                          |
| ------------- | ------ | -------------------------------------------------------------------- |
| **amount**    | string | Amount of Hycon to send to the recipient.                            |
| **blockhash** | string | Hash value representing the block that contains the transaction.     |
| **blocktime** | number | Timestamp in which the block containing the transaction was created. |
| **fee**       | string | Transaction fee that the sender pays for the transaction transfer.   |
| **from**      | string | Sender Hycon address.                                                |
| **nonce**     | number | The transaction number sent by the from address.                     |
| **to**        | string | Recipient Hycon address.                                             |
| **txhash**    | string | Hash value representing the transaction.                             |

**Response Error Table**

| Status | Error         | Message                                                                |
| ------ | ------------- | ---------------------------------------------------------------------- |
| 400    | `BAD_REQUEST` | The hash or address value is not defined. Please check the parameters. |

**Response (Success)**

```
[
    {
        "amount": "10",
        "blockhash": "8qMYN7vpeeUgwBFB61Pvv3e7wcGXjmxyZ2RMo8BaMVtD",
        "blocktime": 1545206983588,
        "fee": "0.000000001",
        "from": "H497fHm8gbPZxaXySKpV17a7beYBF9Ut3",
        "nonce": 309,
        "to": "H5gAeuo27LvUPTQRYL8A3YmAMmu8FbTV",
        "txhash": "CA9AsizAtynYfCpJqXkYFcdX9xXNnp5Q4Vyph9joAw9M"
    },
    ...
]
```


---

# 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://teamhycon.gitbook.io/docs/api-v3-2/untitled-3/response-tx-by-address.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.
