- Introduction
- Get Started
- Signature
- About WUSD
- Webhook Service
- Sandbox Environment
- Blockchain Confirmations
- Appendix
- API Keys
- Core Functionality
- Api Reference
- Authentication
- Wallet
- Address
- Remit Info
- Transaction
- Get BalancePOST
- Create Fiat DepositPOST
- Create Fiat WithdrawPOST
- Create Crypto WithdrawPOST
- Get Fiat Transaction GET
- Get Exchange RatePOST
- Create Mint/RedeemPOST
- Mint/Redeem HistoryPOST
- Get Mint Redeem ReceiptPOST
- Get Mint Redeem OrderPOST
- Get Fiat Transaction ReceiptPOST
- Get Fiat Transaction OrderPOST
- Get Crypto Transaction ReceiptPOST
- Get Crypto Transaction OrderPOST
- User Account
- File Upload
Get Crypto Transaction Order
Sandbox
https://wallet.test.wspn.io
Sandbox
https://wallet.test.wspn.io
POST
/openapi/v1/crypto-transaction/order
Request
Body Params application/json
query
object
required
orderId
integer
optional
requestId
string
optional
Example
{
"query": {
"orderId": 240319170131042,
"requestId": "af5152a-4719-4b17b-v218a-bcyt****"
}
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://wallet.test.wspn.io/openapi/v1/crypto-transaction/order' \
--header 'Content-Type: application/json' \
--data-raw '{
"query": {
"orderId": 240319170131042,
"requestId": "af5152a-4719-4b17b-v218a-bcyt****"
}
}'
Responses
🟢200receipt-json
application/json
Body
header
object
required
success
boolean
required
result
object
required
orderId
integer
required
orderType
string
required
clientId
integer
required
orderDate
string
optional
clientName
string
required
email
string
required
item
string
required
depositAmount
string
optional
depositFees
string
optional
netAmount
string
required
transactionHash
string
optional
senderInformation
string
optional
senderAddress
string
optional
senderNetwork
string
optional
status
string
required
Examples
{
"header": {
"success": true
},
"result": {
"orderId": 250630134450721,
"orderType": "Crypto Deposit",
"clientId": 6825060000,
"orderDate": "2025-06-30",
"clientName": "2025_06_24 test api 1.1",
"email": "****@***.com",
"item": "WUSD",
"depositAmount": "102.00",
"depositFees": "-",
"netAmount": "102.00",
"transactionHash": "0x*******4ef33bf17d770865eaea8a51de97eae40e9489d33dbcb23f63be4a387",
"senderInformation": "2025_06_24 test api 1.1",
"senderAddress": "0x9f9D96DAB48f2E67BF93CCc7Ece46e0******22C",
"senderNetwork": "Ethereum",
"status": "COMPLETED"
}
}
Modified at 2025-07-04 06:36:17