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": "<string>",
      "name": "<string>",
      "email": "<string>",
      "status": "<string>",
      "iconUrl": "<string>",
      "createdAt": "<string>"
    }
  ],
  "totalCount": 0,
  "nextCursor": "<string>"
}

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
cursor
string

Opaque pagination cursor. Use value from nextCursor.

limit
integer
default:20

Page size (default 20, max 100)

Required range: 1 <= x <= 100

Response

Merchants list

merchants
object[]
required
totalCount
integer
required
Required range: -9007199254740991 <= x <= 9007199254740991
nextCursor
string | null
required