Skip to main content
GET
/
merchants
/
list
Supported Merchants List
curl --request GET \
  --url https://api.sandbox.henrylabs.ai/v0/merchants/list \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "status": "<string>",
  "message": "<string>",
  "data": {
    "merchants": [
      {
        "id": "<string>",
        "name": "<string>",
        "domain": "<string>",
        "website": "<string>"
      }
    ],
    "pagination": {
      "currentPage": 123,
      "totalPages": 123,
      "totalCount": 123,
      "hasNextPage": true,
      "hasPreviousPage": true,
      "limit": 123
    }
  }
}

Authorizations

x-api-key
string
header
required

Query Parameters

page
integer
default:1

Page number (starts from 1)

Required range: x >= 1
limit
integer
default:5

Number of items per page (1-100)

Required range: 1 <= x <= 100

Response

supported merchants retrieved successfully

success
boolean
required
status
string
required
message
string
required
data
object