> For the complete documentation index, see [llms.txt](https://docs.kairos-timeboost.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.kairos-timeboost.xyz/json-rpc-endpoints/submission-api/eth_sendrawtransaction.md).

# eth\_sendRawTransaction

### We also support the standard `eth_sendRawTransaction` method.&#x20;

For more details on using `eth_sendRawTransaction`, please refer to the [Ethereum JSON-RPC documentation](https://ethereum.org/en/developers/docs/apis/json-rpc/).

### Request Body

```json
{
  "jsonrpc": "2.0",
  "id": "1",
  "method": "eth_sendRawTransaction",
  "params": [
    // String
    // Signed EIP-2718 rlp encoded tx hex.
    tx
  ]
}‍
```

### **CURL Example** <a href="#response-example" id="response-example"></a>

```bash
curl -s \
  -X POST \
  -H "Content-Type: application/json" \
  --data '{
    "jsonrpc": "2.0",
    "id": "1",
    "method": "eth_sendRawTransaction",
    "params": ["0x12…ab"]
  }' \
  https://rpc.kairos-timeboost.xyz
```

### ‍**Response Example** <a href="#response-example" id="response-example"></a>

```json
{
  "jsonrpc": "2.0",
  "id":1,
  "result": "0xe670ec64341771606e55d6b4ca35a1a6b75ee3d5145a99d05921026d1527331"
}
```
