> 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/metis/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": [
    "0x3a7b6f8c945207d04f9b6c34a8c2b1a1dce384319f87c19e8276c7f2b7e295c670f7d6382b6d9921e2c586ef2a770adebdfc0911d066d47e15179404c509ed8918"
  ]
}'
```

{% endcode %}

#### Sample Response

{% code overflow="wrap" %}

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

{% endcode %}
