List merchants
curl --request GET \
--url https://api.pay.walletconnect.com/v1/merchants \
--header 'Api-Key: <api-key>'import requests
url = "https://api.pay.walletconnect.com/v1/merchants"
headers = {"Api-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'Api-Key': '<api-key>'}};
fetch('https://api.pay.walletconnect.com/v1/merchants', 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://api.pay.walletconnect.com/v1/merchants",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Api-Key: <api-key>"
],
]);
$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://api.pay.walletconnect.com/v1/merchants"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Api-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.pay.walletconnect.com/v1/merchants")
.header("Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.pay.walletconnect.com/v1/merchants")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Api-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"merchants": [
{
"id": "mrch_7kBz2qR9xPvLmN4Yw",
"name": "Acme Store",
"email": "billing@acme.store",
"status": "active",
"iconUrl": "https://imagedelivery.net/example/acme-icon.png",
"createdAt": "2025-06-15T10:30:00.000Z"
},
{
"id": "mrch_Qx8fTp3YwKjR5vNm2",
"name": "Widget Co",
"email": null,
"status": "active",
"iconUrl": null,
"createdAt": "2025-07-01T08:00:00.000Z"
}
],
"totalCount": 2,
"nextCursor": null
}Merchants
List merchants
List the partner’s merchants. Supports filtering by status, free-text search over name and ID, and cursor-based pagination via cursor and limit.
GET
/
v1
/
merchants
List merchants
curl --request GET \
--url https://api.pay.walletconnect.com/v1/merchants \
--header 'Api-Key: <api-key>'import requests
url = "https://api.pay.walletconnect.com/v1/merchants"
headers = {"Api-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'Api-Key': '<api-key>'}};
fetch('https://api.pay.walletconnect.com/v1/merchants', 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://api.pay.walletconnect.com/v1/merchants",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Api-Key: <api-key>"
],
]);
$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://api.pay.walletconnect.com/v1/merchants"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Api-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.pay.walletconnect.com/v1/merchants")
.header("Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.pay.walletconnect.com/v1/merchants")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Api-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"merchants": [
{
"id": "mrch_7kBz2qR9xPvLmN4Yw",
"name": "Acme Store",
"email": "billing@acme.store",
"status": "active",
"iconUrl": "https://imagedelivery.net/example/acme-icon.png",
"createdAt": "2025-06-15T10:30:00.000Z"
},
{
"id": "mrch_Qx8fTp3YwKjR5vNm2",
"name": "Widget Co",
"email": null,
"status": "active",
"iconUrl": null,
"createdAt": "2025-07-01T08:00:00.000Z"
}
],
"totalCount": 2,
"nextCursor": null
}Authorizations
API KeyApiKeyAppId
Query Parameters
Filter by merchant status
Available options:
active, inactive, suspended Search by merchant name or ID (case-insensitive)
Required string length:
1 - 256Example:
"Acme"
Opaque pagination cursor — use the value from nextCursor in the previous response.
Page size (default 20, max 100)
Required range:
1 <= x <= 100Response
Merchants list