Biconomy · Schema

Biconomy MEE Quote Request

Request body for POST https://api.biconomy.io/v1/quote. Composes instructions and returns a signable MEE supertransaction quote.

Account AbstractionBlockchainBundlerCross-ChainDeFiERC-4337ERC-7579ERC-7702EthereumGas AbstractionGaslessMEEPaymasterSmart AccountsSmart SessionsWalletsWeb3

Properties

Name Type Description
mode string Account mode driving signature shape and gas funding rules.
ownerAddress string EOA address that owns the orchestrator account.
authorizations array EIP-7702 authorization tuples used to delegate the EOA to a Nexus implementation. Required for eoa-7702 mode.
composeFlows array Ordered list of instructions to compose into a supertransaction.
fundingTokens array Tokens the user is willing to spend to fund this supertransaction. Required for eoa mode.
feeToken object Token used to pay the MEE fee. Omit for sponsored execution.
cleanups array Optional cleanup configs to sweep intermediate tokens after the supertransaction completes.
sponsorship object Optional sponsorship hints. Final policy is enforced server-side from the dashboard config attached to the API key.
View JSON Schema on GitHub

JSON Schema

biconomy-quote-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/biconomy/main/json-schema/biconomy-quote-request-schema.json",
  "title": "Biconomy MEE Quote Request",
  "description": "Request body for POST https://api.biconomy.io/v1/quote. Composes instructions and returns a signable MEE supertransaction quote.",
  "type": "object",
  "required": ["mode", "ownerAddress", "composeFlows"],
  "properties": {
    "mode": {
      "type": "string",
      "enum": ["smart-account", "eoa", "eoa-7702"],
      "description": "Account mode driving signature shape and gas funding rules."
    },
    "ownerAddress": {
      "type": "string",
      "pattern": "^0x[a-fA-F0-9]{40}$",
      "description": "EOA address that owns the orchestrator account."
    },
    "authorizations": {
      "type": "array",
      "description": "EIP-7702 authorization tuples used to delegate the EOA to a Nexus implementation. Required for eoa-7702 mode.",
      "items": {
        "type": "object",
        "required": ["address", "chainId", "nonce", "r", "s"],
        "properties": {
          "address": {
            "type": "string",
            "pattern": "^0x[a-fA-F0-9]{40}$"
          },
          "chainId": { "type": "integer", "minimum": 1 },
          "nonce": { "type": "integer", "minimum": 0 },
          "r": { "type": "string" },
          "s": { "type": "string" },
          "v": { "type": "integer" },
          "yParity": { "type": "integer", "enum": [0, 1] }
        }
      }
    },
    "composeFlows": {
      "type": "array",
      "description": "Ordered list of instructions to compose into a supertransaction.",
      "items": {
        "type": "object",
        "required": ["type"],
        "properties": {
          "type": {
            "type": "string",
            "enum": [
              "/instructions/intent-simple",
              "/instructions/intent",
              "/instructions/intent-vault",
              "/instructions/build",
              "/instructions/build-raw",
              "/instructions/build-ccip"
            ]
          }
        }
      },
      "minItems": 1
    },
    "fundingTokens": {
      "type": "array",
      "description": "Tokens the user is willing to spend to fund this supertransaction. Required for eoa mode.",
      "items": {
        "type": "object",
        "required": ["address", "chainId"],
        "properties": {
          "address": { "type": "string", "pattern": "^0x[a-fA-F0-9]{40}$" },
          "chainId": { "type": "integer", "minimum": 1 },
          "amount": { "type": "string" }
        }
      }
    },
    "feeToken": {
      "type": "object",
      "description": "Token used to pay the MEE fee. Omit for sponsored execution.",
      "required": ["address", "chainId"],
      "properties": {
        "address": { "type": "string", "pattern": "^0x[a-fA-F0-9]{40}$" },
        "chainId": { "type": "integer", "minimum": 1 }
      }
    },
    "cleanups": {
      "type": "array",
      "description": "Optional cleanup configs to sweep intermediate tokens after the supertransaction completes.",
      "items": {
        "type": "object",
        "properties": {
          "tokenAddress": { "type": "string", "pattern": "^0x[a-fA-F0-9]{40}$" },
          "chainId": { "type": "integer" },
          "recipient": { "type": "string", "pattern": "^0x[a-fA-F0-9]{40}$" },
          "gasLimit": { "type": "string" }
        }
      }
    },
    "sponsorship": {
      "type": "object",
      "description": "Optional sponsorship hints. Final policy is enforced server-side from the dashboard config attached to the API key.",
      "properties": {
        "enabled": { "type": "boolean" },
        "url": { "type": "string", "format": "uri" }
      }
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/biconomy-quote-request"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.