# 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
        }
    ]
}
```
