Skip to main content
GET
/
v1
/
merchants
List merchants
curl --request GET \
  --url https://api.pay.walletconnect.com/v1/merchants \
  --header 'Api-Key: <api-key>'
{
  "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-Key
string
header
required

Query Parameters

status
enum<string>

Filter by merchant status

Available options:
active,
inactive,
suspended

Search by merchant name or ID (case-insensitive)

Required string length: 1 - 256
Example:

"Acme"

cursor
string

Opaque pagination cursor — use the value from nextCursor in the previous response.

limit
integer
default:20

Page size (default 20, max 100)

Required range: 1 <= x <= 100

Response

Merchants list

merchants
object[]
required
totalCount
integer
required

Total number of merchants matching the query (ignoring pagination)

Required range: -9007199254740991 <= x <= 9007199254740991
nextCursor
string | null
required

Cursor for the next page, or null if no more results