v1
latestOpenAPI 3.1.02026-07-262343124.1 KBMerchant Management
Get a merchant
Fetch a merchant's profile along with its configured settlements (crypto and fiat). Crypto settlements use CAIP-19 asset IDs and CAIP-10 destination accounts.
get/v1/merchants/{merchantId}
Path parameters
merchantIdstring required
Response
Merchant details
Example response
{
"merchant": {
"id": "mrch_7kBz2qR9xPvLmN4Yw",
"email": "billing@acme.store",
"status": "active",
"iconUrl": "https://imagedelivery.net/example/acme-icon.png",
"createdAt": "2025-06-15T10:30:00.000Z",
"settlements": {
"crypto": [
{
"asset": "eip155:8453/erc20:0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"destination": "eip155:8453:0x1234567890abcdef1234567890abcdef12345678"
}
]
}
}
}