> For the complete documentation index, see [llms.txt](https://docs.nodies.app/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.nodies.app/supported-api-methods/ethereum/eth_sendrawtransaction.md).

# eth\_sendRawTransaction

### Parameters

`Data` of the signed transaction.

#### Sample Request

{% code overflow="wrap" %}

```
curl https://lb.nodies.app/v1/<INSERT URL> \
   -H "x-api-key: <API-KEY>" \
   -X POST \
   -H "Content-Type: application/json" \
   -d '{ 
  "id": 1,
  "jsonrpc": "2.0",
  "method": "eth_sendRawTransaction",
  "params": [
    "0x598c2a907615a16421b37bc7c5059f8c3cbe4e2ce7ad3bb71e49bca14efc8e80c01e2c5ef3e8d3f227ee462b98b2319460c9d4b7b29fda4a1a8d8f54a67232c69e70de286ba26a6a7392f69223c006010bd35015843114e0c64a320ac540801ba0942bf937e19cc995fe9d8de6823c6929cc2d8a632131dcd29a9855c6f0cbe6db7a377d8e505c9ee25af7e93d35a014940f81"
  ]
}'
```

{% endcode %}

#### Sample Response

{% code overflow="wrap" %}

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

{% endcode %}
