# Send Bundle

#### MEV Zone – Bundle Submission API

This API is used to receive bundles, via the method **`eth_sendBundle.`**

At the following endpoint [`https://builder.mev.zone/ext/bc/C/rpc`](https://builder.mev.zone/ext/bc/C/rpc)

&#x20; The **MEV Zone Builder** prioritizes bundles that transfer more AVAX at the following address:

**`0x00b22a6a183ddbefe7b515a73ec2dc7c39bf82ce`**&#x20;

### Request Example

```json
{
  "jsonrpc": "2.0",
  "id": "1",
  "method": "eth_sendBundle",
  "params": [
    {
      "txs":["0x…2b", "0x…1c"],    // List of signed raw transactions
      "maxBlockNumber":123456789,  // The maximum block number for the bundle to be valid, with the default set to the current block number + 100
      "minTimestamp":123456789,    // Expected minimum Unix timestamp (in seconds) for the bundle to be valid
      "maxTimestamp":1234567898,   // Expected maximum Unix timestamp (in seconds) for the bundle to be valid
      "revertingTxHashes":[
        "0x1234", 
        "0x1234"
        ]                         // List of transaction hashes allowed for revert
    }
  ]
}‍

```

### Response Example

```json
// Success
{
 "jsonrpc":"2.0",
 "id":"1",
 "result":"0x1234"  //bundle hash
}‍
// Error
{
  "jsonrpc":"2.0",
  "id":"1",
  "error":{
    "code":-1234,
    "message":"error
    }
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://mevzone.gitbook.io/mevzone/mev-zone-block-builder/send-bundle.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
