---
title: "Send a signed Tx"
method: POST
path: "/tx/broadcast"
tags: ["ICS20"]
---

# Send a signed Tx

`POST /tx/broadcast`

Send a signed Tx to a Gaiad full node

## Request body

- object
  - `tx` StdTx
    - `msg` Msg[]
    - `fee` object
      - `gas` string
      - `amount` Coin[]
        - `denom` string
        - `amount` string
    - `memo` string
    - `signature` object
      - `signature` string
      - `pub_key` object
        - `type` string
        - `value` string
      - `account_number` string
      - `sequence` string

## Response `202`

Tx was send and will probably be added to the next block

- BroadcastTxCommitResult
  - `check_tx` CheckTxResult
    - `code` integer
    - `data` string
    - `gas_used` integer
    - `gas_wanted` integer
    - `info` string
    - `log` string
    - `tags` KVPair[]
      - `key` string
      - `value` string
  - `deliver_tx` DeliverTxResult
    - `code` integer
    - `data` string
    - `gas_used` integer
    - `gas_wanted` integer
    - `info` string
    - `log` string
    - `tags` KVPair[]
      - `key` string
      - `value` string
  - `hash` string
  - `height` integer

## Other responses

- `400` — The Tx was malformated
- `500` — Server internal error

---

[API](https://skmtc.net/bnb-chain/apis/gaia-lite-for-cosmos.md) · [All operations](https://skmtc.net/bnb-chain/apis/gaia-lite-for-cosmos/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/bnb-chain/gaia-lite-for-cosmos/revisions/66846564e1ee/schema)
