This API fetches transactions that are currently in a 'Pending' state. This can be done by following two methods : -> By Pagination (For List of Pending Transactions) -> By Sequence ID (For Individual Pending Transaction)

Quick Navigation : Function Index

  1. Get Pending Transaction By Pagination
  2. Get Pending Transaction By Sequence ID

By Pagination

Retrieves a list of transactions in the 'Pending' state. Refer to the following guide:

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