Biconomy · Example Payload

Biconomy Execute Example

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

Biconomy Execute Example is an example object payload from Biconomy, with 3 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

$commentrequestresponse

Example Payload

Raw ↑
{
  "$comment": "Example POST https://api.biconomy.io/v1/execute — submit a signed quote previously returned by /v1/quote.",
  "request": {
    "method": "POST",
    "url": "https://api.biconomy.io/v1/execute",
    "headers": {
      "Content-Type": "application/json",
      "X-API-Key": "<BICONOMY_API_KEY>"
    },
    "body": {
      "quote": {
        "quoteType": "supertransaction"
      },
      "payloadSignatures": [
        {
          "format": "eip712-permit",
          "signature": "0x...64bytes..."
        }
      ]
    }
  },
  "response": {
    "status": 200,
    "body": {
      "supertransactionHash": "0xabc...123",
      "perChainHashes": [
        { "chainId": 8453, "txHash": "0xdef...456" },
        { "chainId": 42161, "txHash": "0x789...abc" }
      ],
      "explorerUrl": "https://meescan.biconomy.io/tx/0xabc...123"
    }
  }
}