Skip to main content
GET
api
/
bundler-providers?provider=
{provider}
&apiKey=
{apiKey}
Find provider (bundler) addresses by name
curl --request GET \
  --url 'https://bundlers.network/api/bundler-providers?provider={provider}&apiKey={apiKey}'
import requests

url = "https://bundlers.network/api/bundler-providers?provider={provider}&apiKey={apiKey}"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://bundlers.network/api/bundler-providers?provider={provider}&apiKey={apiKey}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://bundlers.network/api/bundler-providers?provider={provider}&apiKey={apiKey}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://bundlers.network/api/bundler-providers?provider={provider}&apiKey={apiKey}"

req, _ := http.NewRequest("GET", url, nil)

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://bundlers.network/api/bundler-providers?provider={provider}&apiKey={apiKey}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://bundlers.network/api/bundler-providers?provider={provider}&apiKey={apiKey}")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
{
    "addresses": [
        "0xfb925186f787694009ab6404b9caab95bc7ae377",
        "0x175a9777c6cf26e26947210bd8bab324d60dcf3c",
        "0xdcdd0ddeaa0407c26dfcd481de9a34e1c55f8d54",
        "0x9776cab4a2dce3dc96db55c919eee822c40b94ee",
        "0x4e0df48f7584ad9ae9978c60178ef726345cc48a",
        "0x29830065d28765e34c19eb774794f010e7b50cf9",
        "0x7c1c87d06f88786d4da52a0e81f82aea9d90e1ec",
        "0xc360e1da5b9bdb9a8879a0cfa1180556426e2305",
        "0x6baad70fc330c22cf26b51897b84fd3281d283a2",
        "0xc85a109221d6b3593b01b36d5b2b6719d2ab7518"
    ]
}

API URL

https://bundlers.network/api/bundler-providers?provider={provider}&apiKey={apiKey}

Parameters

provider
string
required
Example: Alchemy, Biconomy, Candide, Etherspot, Pimlico, Particle, Stackup etc. [case sensitive]
apiKey
string
required
Request API key here: https://request.bundlers.network/

Response

addresses
array
Data regarding bundler providers are taken from BundleBear - Operator Registry by Kofi.
{
    "addresses": [
        "0xfb925186f787694009ab6404b9caab95bc7ae377",
        "0x175a9777c6cf26e26947210bd8bab324d60dcf3c",
        "0xdcdd0ddeaa0407c26dfcd481de9a34e1c55f8d54",
        "0x9776cab4a2dce3dc96db55c919eee822c40b94ee",
        "0x4e0df48f7584ad9ae9978c60178ef726345cc48a",
        "0x29830065d28765e34c19eb774794f010e7b50cf9",
        "0x7c1c87d06f88786d4da52a0e81f82aea9d90e1ec",
        "0xc360e1da5b9bdb9a8879a0cfa1180556426e2305",
        "0x6baad70fc330c22cf26b51897b84fd3281d283a2",
        "0xc85a109221d6b3593b01b36d5b2b6719d2ab7518"
    ]
}