Retrieve pending transactions

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"
    }
}
Language
Credentials
Basic
base64
:
Click Try It! to start a request and see the response here!