> For the complete documentation index, see [llms.txt](https://teamhycon.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://teamhycon.gitbook.io/docs/api-v3-2/untitled-4/response-specified-tx.md).

# Response (specified tx)

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

| 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.                          |
| **confirmation** | number | The height difference between the current block tip and the block containing the transaction. |
| **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                    |
| 404    | `NOT_FOUND`   | The transaction(Fjbnhvo1Qy4KisAgpTbrbYn2u24nfskDuyUwAAEjkAcw) does not exist in the txDB |

**Response (Success)**

```
{
    "amount": "2.594615332",
    "blockhash": "6LkWJb1M2WhZm98RERFLXQqzcaoG2LjZP6YRrdg6892J",
    "blocktime": 1543656016427,
    "confirmation": 178,
    "fee": "0.000001",
    "from": "H23fF8ktBWYwK7aHFbPSW52LtoHcbDvmT",
    "nonce": 2740855,
    "to": "H4BFn3xRMAEEvCvbjhr3VopejyH8yHTCA",
    "txhash": "Fjbnhvo1Qy4KisAgpTbrbYn2u24nfskDuyUwAAEjkAcH"
}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://teamhycon.gitbook.io/docs/api-v3-2/untitled-4/response-specified-tx.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
