Transaction
Transaction submission and retrieval
Submit transaction (POST)
Submit a signed transaction to the network
{"openapi":"3.0.3","info":{"title":"Amadeus Blockchain API","version":"1.5.0"},"tags":[{"name":"Transaction","description":"Transaction submission and retrieval"}],"servers":[{"url":"https://nodes.amadeus.bot","description":"Mainnet"},{"url":"https://testnet-rpc.ama.one","description":"Testnet"}],"paths":{"/api/tx/submit":{"post":{"tags":["Transaction"],"summary":"Submit transaction (POST)","description":"Submit a signed transaction to the network","requestBody":{"required":true,"content":{"application/octet-stream":{"schema":{"type":"string","format":"binary","description":"Packed transaction (raw bytes or Base58 encoded)"}}}},"responses":{"200":{"description":"Submission result","content":{"application/json":{"schema":{"type":"object","properties":{"error":{"type":"string"},"txid":{"type":"string"}}}}}}}}}}}
Submit transaction (GET)
Submit a signed transaction using GET method
{"openapi":"3.0.3","info":{"title":"Amadeus Blockchain API","version":"1.5.0"},"tags":[{"name":"Transaction","description":"Transaction submission and retrieval"}],"servers":[{"url":"https://nodes.amadeus.bot","description":"Mainnet"},{"url":"https://testnet-rpc.ama.one","description":"Testnet"}],"paths":{"/api/tx/submit/{tx_packed}":{"get":{"tags":["Transaction"],"summary":"Submit transaction (GET)","description":"Submit a signed transaction using GET method","parameters":[{"name":"tx_packed","in":"path","required":true,"description":"Packed transaction (Base58 encoded)","schema":{"type":"string"}}],"responses":{"200":{"description":"Submission result","content":{"application/json":{"schema":{"type":"object"}}}}}}}}}
Submit and wait for confirmation (POST)
Submit a transaction and wait for it to be included in a block
{"openapi":"3.0.3","info":{"title":"Amadeus Blockchain API","version":"1.5.0"},"tags":[{"name":"Transaction","description":"Transaction submission and retrieval"}],"servers":[{"url":"https://nodes.amadeus.bot","description":"Mainnet"},{"url":"https://testnet-rpc.ama.one","description":"Testnet"}],"paths":{"/api/tx/submit_and_wait":{"post":{"tags":["Transaction"],"summary":"Submit and wait for confirmation (POST)","description":"Submit a transaction and wait for it to be included in a block","requestBody":{"required":true,"content":{"application/octet-stream":{"schema":{"type":"string","format":"binary","description":"Packed transaction (raw bytes or Base58 encoded)"}}}},"responses":{"200":{"description":"Submission and confirmation result","content":{"application/json":{"schema":{"type":"object"}}}}}}}}}
Submit and wait for confirmation (GET)
Submit a transaction and wait for confirmation using GET method
{"openapi":"3.0.3","info":{"title":"Amadeus Blockchain API","version":"1.5.0"},"tags":[{"name":"Transaction","description":"Transaction submission and retrieval"}],"servers":[{"url":"https://nodes.amadeus.bot","description":"Mainnet"},{"url":"https://testnet-rpc.ama.one","description":"Testnet"}],"paths":{"/api/tx/submit_and_wait/{tx_packed}":{"get":{"tags":["Transaction"],"summary":"Submit and wait for confirmation (GET)","description":"Submit a transaction and wait for confirmation using GET method","parameters":[{"name":"tx_packed","in":"path","required":true,"description":"Packed transaction (Base58 encoded)","schema":{"type":"string"}}],"responses":{"200":{"description":"Submission and confirmation result","content":{"application/json":{"schema":{"type":"object"}}}}}}}}}