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

Internal transaction create

POST
/api/Transaction/internal-transactions
Creates an internal transaction (between internal wallets)
Useful to transfer coins(native) that will support network fee if target vault has none.

Request

Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/Transaction/internal-transactions' \
--header 'Content-Type: application/json' \
--data-raw '{
  "assetId": "string",
  "sendingAddress": "string",
  "sendAmount": 0.0,
  "receivingAddress": "string"
}'
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"
}
Modified at 2025-05-05 09:35:15
Previous
Transaction Create
Next
Get Transaction
Built with