Skip to main content
POST
/
gateway
/
wallets
/
send
Send Transaction
curl --request POST \
  --url http://localhost:8000/gateway/wallets/send \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "chain": "<string>",
  "network": "<string>",
  "address": "<string>",
  "to_address": "<string>",
  "amount": "<string>"
}
'
{}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

application/json

Request to send a native token transaction

chain
string
required

Blockchain chain (e.g., 'solana', 'ethereum')

network
string
required

Network (e.g., 'mainnet-beta', 'mainnet')

address
string
required

Sender wallet address

to_address
string
required

Recipient address

amount
string
required

Amount to send (in native token units)

Response

Successful Response

The response is of type Response Send Transaction Gateway Wallets Send Post · object.