Query the originating VASP by TXID.

In the case where an anonymous transaction has made, you can verify if it was generated from one of CODE members, and query the entity ID by calling this API.

This API searches for TXID originators only among CODE members. A NOT_FOUND_TXID response indicates that the TXID was either generated by a non-CODE member or there was a temporary server issue.

❗️The scope of this search is restricted to CODE members. TXIDs generated by Non-CODE member won't be found.


❗️The Txid or tx hash must always be used exactly as provided in the blockchain Node Output data. Adding '0x' in front of the tx hash may cause a mismatch. Therefore, please ensure that '0x' is not included unless it is present in the Node Output.


❗️After making a request to an API that operates asynchronously, you can either receive the result using a Callback URL or check the result via the 'Search VASP by TXID Result' API. The result data is the same for both methods.


Request

NameRequiredDescription
txidRequiredTXID
voutOptionalAn identifier for UTXO-type coins, used when multiple blockchain transactions share a single TXID and form a group.
requestIdRequiredThis is the request ID for querying the result. It must be unique.
callbackUrlOptionalCallback URL in https:// format to receive the result.
{
  "txid": "311BFF73D9B7969CCF1042186180159C724FAB59013A7A034A93E5FB9D6BAFE6",
  "vout": "",
  "requestId": "b09c8d00-8da9-11ec-b909-0242ac120002",
  "callbackUrl": "https://endpoint.com"
}

Response

NameRequiredDescription
resultRequiredResult for a request.
requestIdRequiredThis is the request ID for querying the result. It must be unique

result: Result for a request.

-SUCCESS: Returned in the case of a valid request

Example

Language
Authorization
Header
Click Try It! to start a request and see the response here!