{
  "openapi": "3.0.0",
  "info": {
    "title": "Lil' JIT - JITO Bundles & Transactions API",
    "description": "A useful bundle of RPC methods for interacting with JITO via your existing Quicknode endpoint.",
    "version": "1.0.0",
    "contact": {
      "email": "support@quicknode.com",
      "url": "https://support.quicknode.com/hc/en-us"
    }
  },
  "servers": [
    {
      "url": "https://{quicknode_endpoint}",
      "description": "Your Quicknode endpoint",
      "variables": {
        "quicknode_endpoint": {
          "default": "your-endpoint.quiknode.pro",
          "description": "Your Quicknode endpoint URL"
        }
      }
    }
  ],
  "tags": [
    {
      "name": "JSON-RPC",
      "description": "See request body examples for the available methods you can call on this add-on"
    }
  ],
  "paths": {
    "/rpc": {
      "post": {
        "summary": "JSON-RPC methods for qn://rpc-jito-backend",
        "description": "simulateBundle: Improved simulation support that Jito offers and allows you to simulate bundles of transactions",
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "oneOf": [
                  {
                    "type": "object",
                    "properties": {
                      "jsonrpc": {
                        "type": "string",
                        "enum": [
                          "2.0"
                        ]
                      },
                      "method": {
                        "type": "string",
                        "enum": [
                          "simulateBundle"
                        ]
                      },
                      "id": {
                        "type": "integer",
                        "example": 1
                      },
                      "params": {
                        "type": "array",
                        "description": "Positional parameters",
                        "items": {
                          "description": "Parameter value (can be string, number, boolean, object, etc.)"
                        },
                        "example": [
                          {
                            "encodedTransactions": [
                              "AbM7GVY0ZF5AqHCNfiFFf9xHF5CARMjbLoa3A/B5MRp/612FAJURRwuhFH/EOdb2612KWIRkv+YB5pPBdwTDzwUBAAEEgqSlEzT86Cubcco//aDjyiMlakGhXgOP7ob4gtVmO6mI8f+jot/mF73E41cyUaMi4/yugeWkVzkOZHUcAKRl4uUtbN7V/ToRSrQDvff5F/mwgnksSv1L8AO/2aGw9UjVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPX0AhTVEDFR8S8VZbfKwvFY+IRDz4UAhC5gvtY9mZmAIDAgACDAIAAACA8PoCAAAAAAMCAAEMAgAAAKCGAQAAAAAA"
                            ]
                          }
                        ]
                      }
                    },
                    "required": [
                      "jsonrpc",
                      "method",
                      "id",
                      "params"
                    ]
                  }
                ],
                "discriminator": {
                  "propertyName": "method"
                }
              },
              "examples": {
                "simulateBundle": {
                  "summary": "Improved simulation support that Jito offers and allows you to simulate bundles of transactions",
                  "value": {
                    "jsonrpc": "2.0",
                    "method": "simulateBundle",
                    "id": 1,
                    "params": [
                      {
                        "encodedTransactions": [
                          "AbM7GVY0ZF5AqHCNfiFFf9xHF5CARMjbLoa3A/B5MRp/612FAJURRwuhFH/EOdb2612KWIRkv+YB5pPBdwTDzwUBAAEEgqSlEzT86Cubcco//aDjyiMlakGhXgOP7ob4gtVmO6mI8f+jot/mF73E41cyUaMi4/yugeWkVzkOZHUcAKRl4uUtbN7V/ToRSrQDvff5F/mwgnksSv1L8AO/2aGw9UjVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPX0AhTVEDFR8S8VZbfKwvFY+IRDz4UAhC5gvtY9mZmAIDAgACDAIAAACA8PoCAAAAAAMCAAEMAgAAAKCGAQAAAAAA"
                        ]
                      }
                    ]
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "JSON-RPC response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "jsonrpc": {
                      "type": "string",
                      "enum": [
                        "2.0"
                      ]
                    },
                    "id": {
                      "type": "integer"
                    },
                    "result": {
                      "description": "Method result"
                    },
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "integer"
                        },
                        "message": {
                          "type": "string"
                        },
                        "data": {
                          "description": "Additional error data"
                        }
                      }
                    }
                  },
                  "required": [
                    "jsonrpc",
                    "id"
                  ]
                }
              }
            }
          }
        },
        "externalDocs": {
          "url": "https://www.quicknode.com/docs",
          "description": "Documentation for simulateBundle"
        },
        "tags": [
          "JSON-RPC"
        ]
      }
    }
  },
  "externalDocs": {
    "description": "Support Documentation",
    "url": "https://support.quicknode.com/hc/en-us"
  }
}