# Response (pending txs)

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

| Parameter        | Type   | Description                                                                        |
| ---------------- | ------ | ---------------------------------------------------------------------------------- |
| **address**      | string | The address value used to query.                                                   |
| **count**        | number | The total number of pending transactions sent in response.                         |
| **totalPending** | string | The sum of the transfer amounts and fee of pending transactions sent from address. |
| **pendingTxs**   | array  | List of transactions queried.                                                      |

**Response Error Table**

| Status | Error         | Message                                                              |
| ------ | ------------- | -------------------------------------------------------------------- |
| 400    | `BAD_REQUEST` | Error: The parameter must be the hash of the transaction or address. |

**Response (Success)**

```
{
    "address": "H2hQWtyFT1dvm5o6HvuF1oHq92bbb6ZVY",
    "count": 1,
    "totalPending": "0",
    "pendingTxs": [
        {
            "amount": "0.000000001",
            "to": "H2hQWtyFT1dvm5o6HvuF1oHq92bbb6ZVY",
            "txhash": "7FdVjNM939RF1i86vNnJk8QrFpEHmuueVjX7py2KPixU",
            "fee": "0.000000001",
            "from": "H497fHm8gbPZxaXySKpV17a7beYBF9Ut3",
            "nonce": 310
        }
    ]
}
```


---

# 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-2/response-pending-txs.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.
