> ## Documentation Index
> Fetch the complete documentation index at: https://condor.hummingbot.org/llms.txt
> Use this file to discover all available pages before exploring further.

# Send Transaction

> 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"
}



## OpenAPI

````yaml /api-reference/openapi.json post /gateway/wallets/send
openapi: 3.1.0
info:
  title: Hummingbot API
  description: API for managing Hummingbot trading instances
  version: 1.0.1
servers:
  - url: http://localhost:8000
    description: Local development server
security: []
paths:
  /gateway/wallets/send:
    post:
      tags:
        - Gateway
      summary: Send Transaction
      description: |-
        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"
        }
      operationId: send_transaction_gateway_wallets_send_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SendTransactionRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                additionalProperties: true
                type: object
                title: Response Send Transaction Gateway Wallets Send Post
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBasic: []
components:
  schemas:
    SendTransactionRequest:
      properties:
        chain:
          type: string
          title: Chain
          description: Blockchain chain (e.g., 'solana', 'ethereum')
        network:
          type: string
          title: Network
          description: Network (e.g., 'mainnet-beta', 'mainnet')
        address:
          type: string
          title: Address
          description: Sender wallet address
        to_address:
          type: string
          title: To Address
          description: Recipient address
        amount:
          type: string
          title: Amount
          description: Amount to send (in native token units)
      type: object
      required:
        - chain
        - network
        - address
        - to_address
        - amount
      title: SendTransactionRequest
      description: Request to send a native token transaction
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBasic:
      type: http
      scheme: basic

````