Search for operations by TX hash
The method allows you to find an operation in the system by the address of the transaction in the blockchain
The response will indicate the type of operation, the direction of the transaction, the address that was used for the operation and the body of the operation in the record from the type
Available types of operations:
ORDER
The transaction address was found in the incoming transactions of the order
INVOICE
The transaction address was found in the incoming transactions of the order created for the execution of the account
ORPHAN_TRANSACTION
The transaction address was in the incoming transaction address created for a different coin or network
WITHDRAWAL
Transaction address was found among output operations
DEPOSIT
The transaction address was found in the incoming transaction address as "free replenishment"
PERSONAL_DEPOSIT
The transaction address was found in incoming transactions at the system address "personal user addresses"
Available transaction directions:
IN
Incoming transaction
OUT
Outgoing transaction
Address body example:
{
"id": "cf95ea41-20c5-4528-b689-c21f4da6359f", // address identifier
"type": "PAY_IN" // address type: PAY_IN, PERSONAL, PAY_OUT, BUSINESS, RECURRENT
}
There can be multiple entries in the result body, so the result is represented as an array:
Response body example:
An example of the body of the PERSONAL_DEPOSIT operation:
An example of a DEPOSIT operation body:
An example of a WITHDRAWAL operation body:
An example of the body of the ORDER operation:
An example of the body of the INVOICE operation:
An example of the body of the ORPHAN_DEPOSIT operation:
Public API-key
Signing the request body with a private API-key
Request content type
application/jsonThe body of the request to search for operations on the tx hash
Transaction ID in the blockchain
Last updated