Submits a fully-signed Cardano transaction CBOR to the network. Use this endpoint when the transaction is already fully signed and ready for relay submission.
Use /sign to attach a witness without submission, or /sign-and-submit to attach a witness and submit in one call.
Auth: Public
Request body
Hex-encoded fully-signed transaction CBOR.
Response
Hash of the submitted transaction.
curl --request POST \
--url https://builder.snek.fun/submit \
--header 'Content-Type: application/json' \
--data '{ "cbor": "84a500..." }'
Error response
Machine-readable error code.
Human-readable error message.
Possible errors:
400 INVALID_PARAMS — the request body is missing cbor or cbor is not a string.
500 SERVER_ERROR — the CBOR could not be processed or relay submission failed.
{
"cause": "INVALID_PARAMS",
"message": "Invalid input"
}