curl --request GET \
--url https://api.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
}
}
}Returns a list of supported merchants
curl --request GET \
--url https://api.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
}
}
}Page number (starts from 1)
x >= 1Number of items per page (1-100)
1 <= x <= 100Was this page helpful?