HYCON
API/V1
API/V3
Search…
Docs
Topics api/v1
Introduction
Installation
Make your first call
API Request
API Response
Interacting directly with the network api/v1
Prerequisites
Address Management
Querying an address
Transaction Management
Interacting with local Hycon Node api/v1
Prerequisites
Wallet Management
Getting Blockchain Information
Fetching Block(s)
Fetching Peer(s)
Miscellaneous Tools
Reference api/v1
Language Support
Blockchain Reorganization
Topics api/v3
Introduction
Installation
Make your first call
API Request
API Response
Address API api/v3
Prerequisites (/address)
Getting address information
Block API api/v3
Prerequisites (/block)
Getting the latest block information
Getting specific block information
Getting mined block information
Getting tip information
Network API api/v3
Prerequisites (/network)
Getting market information
Getting list of peers
Getting information of specific peer
Transaction API api/v3
Prerequisites (/tx)
Getting specific transaction information
Getting transactions by address
Getting pending transactions
Query method (pending txs)
URL method (pending txs)
Response (pending txs)
Creating an outgoing transaction
Wallet API api/v3
Prerequisites (/wallet)
Getting information of wallet list
Getting information of specific wallet
Delete Wallet
Generate random mnemonic
Generate / Recover normal wallet or HD wallet with password or passphrase
Decrypt and get an HD wallet information
Reference api/v3
Blockchain Reorganization
Language Support
Powered By
GitBook
Response (pending txs)
api/v3
Response (pending txs)
200 OK, application/json
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)
1
{
2
"address": "H2hQWtyFT1dvm5o6HvuF1oHq92bbb6ZVY",
3
"count": 1,
4
"totalPending": "0",
5
"pendingTxs": [
6
{
7
"amount": "0.000000001",
8
"to": "H2hQWtyFT1dvm5o6HvuF1oHq92bbb6ZVY",
9
"txhash": "7FdVjNM939RF1i86vNnJk8QrFpEHmuueVjX7py2KPixU",
10
"fee": "0.000000001",
11
"from": "H497fHm8gbPZxaXySKpV17a7beYBF9Ut3",
12
"nonce": 310
13
}
14
]
15
}
Copied!
Previous
URL method (pending txs)
Next - Transaction API api/v3
Creating an outgoing transaction
Last modified
10mo ago
Copy link