Skip to main content
POST
/
v1
/
mee
/
orchestrator
Get orchestrator addresses
curl --request POST \
  --url https://api.biconomy.io/v1/mee/orchestrator \
  --header 'Content-Type: application/json' \
  --data '{
  "ownerAddress": "0x0a7C906832544293a6018bA25280c7f7b0Bbf120",
  "chains": [
    1,
    137,
    10,
    8453
  ]
}'
[
  {
    "address": "0x4b19129EA58431A06D01054f69AcAe5de50633b6",
    "chains": [
      "1",
      "10"
    ]
  },
  {
    "address": "0xD5Fe79C09CDF3D279cD87B5CAdC77517D65274ca",
    "chains": [
      "137"
    ]
  }
]

Body

application/json

Body

Request schema for getting orchestrator addresses on specified chains

ownerAddress
string
required

EOA wallet address which is used as owner of the orchestrator account

Example:

"0x0a7C906832544293a6018bA25280c7f7b0Bbf120"

chains
number[]
required

List of unique chain IDs where orchestrator addresses are needed

Minimum length: 1

Chain ID where orchestrator address is needed

Example:
[1, 137, 10, 8453]

Response

Response schema containing orchestrator addresses grouped by chains

address
string
required

Orchestrator address

Example:

"0x742d35Cc6634C0532925a3b844Bc454e4438f44e"

chains
string[]
required

List of chain IDs that share this orchestrator address

Example:
["1", "10", "137"]