---
title: "Send Transaction"
method: POST
path: "/gateway/wallets/send"
tags: ["Gateway"]
---

# Send Transaction

`POST /gateway/wallets/send`

Send a native token transaction.

Args:
    request: Contains chain, network, sender address, recipient address, and amount

Returns:
    Dict with transaction signature/hash.

Example: POST /gateway/wallets/send
{
    "chain": "solana",
    "network": "mainnet-beta",
    "address": "<sender-address>",
    "to_address": "<recipient-address>",
    "amount": "0.001"
}

## Request body

- SendTransactionRequest — 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 `200`

Successful Response

- object

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/hummingbot/apis/hummingbot-api.md) · [All operations](https://skmtc.net/hummingbot/apis/hummingbot-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/hummingbot/hummingbot-api/revisions/5347fe79537f/schema)
