GET
/
merchants
/
{merchantDomain}
/
status
Check if the merchant is supported
curl --request GET \
  --url https://api.henrylabs.ai/v0/merchants/{merchantDomain}/status \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "status": "<string>",
  "message": "<string>",
  "data": {
    "merchantSupportStatus": true
  }
}
This endpoint allows you to check if a specific merchant is supported for automated checkouts. You can query by the merchant’s name or domain.

Authorizations

x-api-key
string
header
required

Path Parameters

merchantDomain
string
required

Merchant Domain

Minimum length: 1
Example:

"walmart.com"

Response

200
application/json

Merchant support status retrieved successfully

The response is of type object.