sendrawtransaction
Submits a raw, already-signed transaction to the daemon for validation and broadcast to the network. This is a legacy plain-HTTP endpoint, not a JSON-RPC method — POST directly to /sendrawtransaction (not /json_rpc), and the body/response have no jsonrpc/method/id envelope.
Request
POST http://127.0.0.1:11232/sendrawtransaction
{
"tx_as_hex": "01f2a3..."
}
Request parameters
- tx_as_hex - the fully signed transaction, serialized and hex-encoded (the same blob a wallet RPC
transfer/submit_transfercall produces).
Response
{
"status": "OK"
}
Response information
- status - "OK" if the transaction was accepted into the pool and relayed. Any other value describes why the transaction was rejected (for example, invalid signatures, insufficient fee, or a double spend).