Bitstech API docs
  1. Transaction Endpoints
Bitstech API docs
  • Auth Endpoints
    • Auth
      POST
  • Vault Endpoints
    • Create Vault(multiple wallets)
      POST
    • Get Wallet
      GET
    • Get Asset
      GET
  • Transaction Endpoints
    • Transaction Create
      POST
    • Internal transaction create
      POST
    • Get Transaction
      GET
  • WebHooks
    • Incoming payment notification
      POST
  1. Transaction Endpoints

Get Transaction

GET
/api/Transaction/{id}
Retrieves transaction info and status
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/Transaction/'
Response Response Example
{
  "id": "string",
  "parentId": "string",
  "type": "string",
  "transactionDate": "2024-01-01T00:00:00Z",
  "source": "string",
  "sourceAssetCurrency": "string",
  "sourceValue": 100.0,
  "destination": "string",
  "destinationAssetCurrency": "string",
  "message": "string",
  "vaultId": "string",
  "vaultName": "string",
  "hash": "string",
  "status": "Pending"
}

Request

Path Params
id
string 
required

Responses

🟢200Success
application/json
Body
id
string 
required
parentId
string 
required
type
string 
required
transactionDate
string 
required
source
string 
required
sourceAssetCurrency
string 
required
sourceValue
integer 
required
destination
string 
required
destinationAssetCurrency
string 
required
message
string 
required
vaultId
string 
required
vaultName
string 
required
hash
string 
required
status
string 
required
Previous
Internal transaction create
Next
Incoming payment notification
Built with