Skip to main content
POST
/
api
/
btc
/
txs
/
submit
Submit a signed transaction (sendrawtransaction)
curl --request POST \
  --url https://nexus.gerowallet.io/api/btc/txs/submit \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "rawTxHex": "<string>"
}
'
{
  "txid": "<string>"
}

Authorizations

Authorization
string
header
required

JWT Token Authentication

Query Parameters

network
enum<string>
Available options:
CARDANO_MAINNET,
CARDANO_PREPROD,
CARDANO_PREVIEW,
APEX_PRIME_MAINNET,
APEX_VECTOR_MAINNET,
APEX_VECTOR_TESTNET,
MIDNIGHT_MAINNET,
MIDNIGHT_PREPROD,
MIDNIGHT_PREVIEW,
BITCOIN_MAINNET,
BITCOIN_TESTNET4

Body

application/json
rawTxHex
string
required
Required string length: 100 - 200000
Pattern: ^[a-fA-F0-9]+$

Response

200 - application/json

OK

txid
string