# Submit Transaction

{% hint style="info" %}
Transactions submitted to this endpoint must include a bloXroute tip instruction in order to be processed. When `use_mev_protection` is `true` use a tip address provided by `Get Tip Wallet` method.
{% endhint %}

## Request

#### Method:&#x20;

`POST ./api/v2/submit`

#### Parameters:

<table><thead><tr><th width="261.4453125">Parameter</th><th width="154.2">type</th><th width="413">Description</th></tr></thead><tbody><tr><td><code>transaction</code></td><td><code>transaction</code></td><td>Set the <code>content</code> parameter (<code>txbase64Payload</code>) to the base64-encoded raw signed transaction bytes. See example below.</td></tr><tr><td><code>wallet</code></td><td>enum</td><td>Specify the type of the wallet. Potential values are HighloadV2R2, HighloadV3, V5R1Final, V4R2</td></tr><tr><td><code>use_mev_protection</code></td><td>boolean</td><td>Whether transaction will be send via private channels</td></tr><tr><td><code>expiration_time_sec</code></td><td>int</td><td>Number of seconds given for the transaction to land (180 sec. by default) until it expires.</td></tr></tbody></table>

### Example:

{% tabs %}
{% tab title="HTTP" %}

```bash
curl -X 'POST' \
  'https://ny.ton.dex.blxrbdn.com/api/v2/submit' \
  -H "Authorization: $AUTH_HEADER" \
  -H "Content-Type: application/json" \
  -d '{
 "transaction": {"content": "Aj+Br...ABC"}, "wallet":"V5R1Final"
}'
```

{% endtab %}
{% endtabs %}

#### Response

<table><thead><tr><th width="214">Parameter</th><th width="110">Type</th><th width="422">Description</th></tr></thead><tbody><tr><td><code>msg_body_hash</code></td><td>string</td><td>The hash of the body of the external message passed by the user in the submit request.</td></tr></tbody></table>

{% tabs %}
{% tab title="JSON" %}

```json
{
  "msg_body_hash":"0x12ade...1954beffccf"
}
```

{% endtab %}
{% endtabs %}
