---
title: "List merchants"
method: GET
path: "/v1/merchants"
tags: ["Merchant Management"]
---

# List merchants

`GET /v1/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`.

## Query parameters

- `status` 'active' | 'inactive' | 'suspended'
- `search` string
- `cursor` string
- `limit` integer

## Response `200`

Merchants list

- object
  - `merchants` object[], required
    - `id` string, required — Merchant ID
    - `name` string, required — Merchant display name
    - `email` string, nullable, required — Contact email
    - `status` 'active' | 'inactive' | 'suspended', required — Current merchant status
    - `iconUrl` string, nullable, required — Merchant logo URL, or null if not set
    - `createdAt` string, required — ISO 8601 creation timestamp
  - `totalCount` integer, required — Total number of merchants matching the query (ignoring pagination)
  - `nextCursor` string, nullable, required — Cursor for the next page, or null if no more results

## Other responses

- `400` — Bad request
- `401` — Unauthorized

---

[API](https://skmtc.net/walletconnect/apis/walletconnect-pay-api.md) · [All operations](https://skmtc.net/walletconnect/apis/walletconnect-pay-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/walletconnect/walletconnect-pay-api/revisions/8e5708191dde/schema)
