curl --request GET \
--url https://staging-biz.coinprofile.co/v2/transaction/{transactionId} \
--header 'X-Api-Key: <api-key>' \
--header 'X-Api-User: <api-key>' \
--header 'X-User-Version: <api-key>'
{
"message": "<string>",
"success": true,
"transactionId": "<string>",
"amount": 123,
"businessId": "<string>",
"currency": "<string>",
"fromAmount": 123,
"fromCurrency": "<string>",
"isFromRegUser": true,
"memo": "<string>",
"prevBalance": 123,
"sender": "<string>",
"status": "<string>",
"type": "<string>",
"username": "<string>"
}
Get a transaction
curl --request GET \
--url https://staging-biz.coinprofile.co/v2/transaction/{transactionId} \
--header 'X-Api-Key: <api-key>' \
--header 'X-Api-User: <api-key>' \
--header 'X-User-Version: <api-key>'
{
"message": "<string>",
"success": true,
"transactionId": "<string>",
"amount": 123,
"businessId": "<string>",
"currency": "<string>",
"fromAmount": 123,
"fromCurrency": "<string>",
"isFromRegUser": true,
"memo": "<string>",
"prevBalance": 123,
"sender": "<string>",
"status": "<string>",
"type": "<string>",
"username": "<string>"
}
Success
The response is of type object
.