Skip to main content
GET
/
v1
/
merchants
/
{merchantId}
Get a merchant
curl --request GET \
  --url https://api.pay.walletconnect.com/v1/merchants/{merchantId} \
  --header 'Api-Key: <api-key>'
{
  "merchant": {
    "id": "<string>",
    "name": "<string>",
    "email": "<string>",
    "status": "<string>",
    "iconUrl": "<string>",
    "createdAt": "<string>",
    "settlements": {
      "crypto": [
        {
          "configId": "<string>",
          "asset": "<string>",
          "destination": "<string>"
        }
      ],
      "fiat": [
        {
          "configId": "<string>",
          "status": "<string>",
          "bankType": "<string>"
        }
      ]
    }
  }
}

Authorizations

Api-Key
string
header
required

Path Parameters

merchantId
string
required

Response

Merchant details

merchant
object
required