post https://api-sdk.lmnl.dev/api/wallet/pending-transaction
This API is a request to retrieve a specific or list of transactions that are currently in the Pending
state. You can use the unique sequence ID of a specific transaction to retrieve its details. You can also use the pagination method to retrieve a list of pending transactions in the records.
API use cases
- Retrieve a list of transactions in the
Pending
state, using the following request body.
Example Request Body
{
"wallet":{
"coin": "eth",
"walletId":1
},
"getPendingTransactionOptions":{
"pagination":{
"pageNumber":1,
"pageSize":10
}
}
}
By Sequence ID
Fetches details of a 'Pending' transaction using its Sequence ID. See the guide below:
Example Response Body
{
"wallet":{
"coin": "eth",
"walletId":1
},
"getPendingTransactionOptions":{
"sequenceId":"93544241-c00e-c754-3bd0-494567a67ee8"
}
}