Biconomy mee API

The mee API from Biconomy — 1 operation(s) for mee.

Operations 2

POST /v1/mee/orchestrator Get orchestrator addresses #
POST /v1/mee/upgrade Generate upgrade quote #

Documentation

Specifications

Schemas & Data

Other Resources

Work with this as data

Every API 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 apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • 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 API
curl "https://apis.io/api/v1/apis/biconomy-mee-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

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

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

biconomy-mee-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Supertransaction instructions Mee API
  version: 0.4.0
  description: A comprehensive Supertransaction API documentation
  license:
    name: MIT
    url: https://opensource.org/licenses/MIT
servers:
- url: https://api.biconomy.io
  description: Production server
- url: https://api-staging.biconomy.io
  description: Staging server
security:
- X-API-Key: []
tags:
- name: mee
paths:
  /v1/mee/orchestrator:
    post:
      description: Get orchestrator addresses for the specified owner on requested chains
      summary: Get orchestrator addresses
      tags:
      - mee
      parameters: []
      operationId: getOrchestrator
      requestBody:
        description: Body
        content:
          application/json:
            schema:
              description: Request schema for getting orchestrator addresses on specified chains
              type: object
              properties:
                ownerAddress:
                  description: EOA wallet address which is used as owner of the orchestrator account
                  type: string
                  example: '0x0a7C906832544293a6018bA25280c7f7b0Bbf120'
                chains:
                  description: List of unique chain IDs where orchestrator addresses are needed
                  example:
                  - 1
                  - 137
                  - 10
                  - 8453
                  minItems: 1
                  type: array
                  items:
                    description: Chain ID where orchestrator address is needed
                    type: number
                    example: 8453
              required:
              - ownerAddress
              - chains
              additionalProperties: false
      responses:
        '200':
          description: Response schema containing orchestrator addresses grouped by chains
          content:
            application/json:
              schema:
                description: Response schema containing orchestrator addresses grouped by chains
                example:
                - address: '0x4b19129EA58431A06D01054f69AcAe5de50633b6'
                  chains:
                  - '1'
                  - '10'
                - address: '0xD5Fe79C09CDF3D279cD87B5CAdC77517D65274ca'
                  chains:
                  - '137'
                type: array
                items:
                  type: object
                  properties:
                    address:
                      description: Orchestrator address
                      type: string
                      example: '0x742d35Cc6634C0532925a3b844Bc454e4438f44e'
                    chains:
                      description: List of chain IDs that share this orchestrator address
                      example:
                      - '1'
                      - '10'
                      - '137'
                      type: array
                      items:
                        type: string
                  required:
                  - address
                  - chains
                  additionalProperties: false
        '400':
          description: '400'
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                  message:
                    type: string
                  errors:
                    type: array
                    items:
                      type: object
                      properties:
                        code:
                          type: string
                        path:
                          type: array
                          items:
                            type: string
                        message:
                          type: string
                      required:
                      - code
                      - path
                      - message
                      additionalProperties: false
                required:
                - code
                - message
                - errors
                additionalProperties: false
        '500':
          description: '500'
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                  message:
                    type: string
                  errors:
                    type: array
                    items:
                      type: object
                      properties:
                        code:
                          type: string
                        path:
                          type: array
                          items:
                            type: string
                        message:
                          type: string
                      required:
                      - code
                      - path
                      - message
                      additionalProperties: false
                required:
                - code
                - message
                - errors
                additionalProperties: false
  /v1/mee/upgrade:
    post:
      description: Generate an upgrade quote for Nexus accounts on specified chains that need to be upgraded from v2.1.0 to v2.2.1
      summary: Generate upgrade quote
      tags:
      - mee
      parameters: []
      operationId: upgrade
      requestBody:
        description: Body
        content:
          application/json:
            schema:
              description: Request schema for generating an upgrade quote
              type: object
              properties:
                ownerAddress:
                  description: EOA wallet address which is the owner of the Nexus accounts to upgrade
                  type: string
                  example: '0x0a7C906832544293a6018bA25280c7f7b0Bbf120'
                mode:
                  type: string
                  enum:
                  - smart-account
                  - eoa
                chainIds:
                  minItems: 1
                  type: array
                  items:
                    type: number
                    example: 8453
                feeToken:
                  type: object
                  properties:
                    address:
                      type: string
                      example: '0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48'
                    chainId:
                      type: number
                      example: 1
                    gasRefundAddress:
                      type: string
                  required:
                  - address
                  - chainId
                  additionalProperties: false
                simulate:
                  type: boolean
                  default: true
              required:
              - ownerAddress
              - mode
              - chainIds
              - simulate
              additionalProperties: false
      responses:
        '200':
          description: Upgrade quote response with per-chain upgrade information
          content:
            application/json:
              schema:
                type: object
                properties:
                  ownerAddress:
                    type: string
                  fee:
                    type: object
                    properties:
                      amount:
                        type: string
                      token:
                        type: string
                      chainId:
                        type: number
                    required:
                    - amount
                    - token
                    - chainId
                  quoteType:
                    type: string
                    enum:
                    - permit
                    - onchain
                    - simple
                    - permit-sca
                    - mm-dtk
                  quote:
                    type: object
                  payloadToSign:
                    type: array
                    minItems: 1
                    items: {}
                  upgradeDetails:
                    type: array
                    items:
                      type: object
                      properties:
                        chainId:
                          type: number
                        addressVersion:
                          type: string
                        address:
                          type: string
                        nexusVersion:
                          type: string
                        targetVersion:
                          type: string
                          const: 2.2.1
                      required:
                      - chainId
                      - addressVersion
                      - address
                      - nexusVersion
                      - targetVersion
                required:
                - ownerAddress
                - fee
                - quoteType
                - quote
                - payloadToSign
                - upgradeDetails
        '400':
          description: '400'
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                  message:
                    type: string
                  errors:
                    type: array
                    items: {}
                required:
                - code
                - message
                - errors
        '500':
          description: '500'
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                  message:
                    type: string
                  errors:
                    type: array
                    items: {}
                required:
                - code
                - message
                - errors
components:
  securitySchemes:
    X-API-Key:
      type: apiKey
      name: X-API-Key
      in: header
      description: 'API Key required to access Supertransaction API. Example: mee_2w3mXCuyt4xVXDRCZ5k5Lhgs'