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:

Type
Description

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:

Direction
Description

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:

Search for operations by TX hash

post
Header parameters
x-api-public-keystringOptional

Public API-key

x-api-signaturestringOptional

Signing the request body with a private API-key

Content-typestringOptional

Request content type

Example: application/json
Body

The body of the request to search for operations on the tx hash

txstringOptional

Transaction ID in the blockchain

Responses
200Success
application/json
post
/api-gateway/find-tx
200Success

Last updated