Merchant
Settlement
Merchant
List Merchants
Retrieve a list of merchants with pagination.
GET
/
partners
/
merchants
/
Copy
Ask AI
curl --request GET \
--url https://api-staging.eximpe.com/partners/merchants/ \
--header 'X-Client-ID: <api-key>' \
--header 'X-Client-Secret: <api-key>'
Copy
Ask AI
{
"success": true,
"message": "Sub-merchants retrieved successfully",
"data": {
"count": 4,
"page": 1,
"page_size": 250,
"next": null,
"previous": null,
"results": [
{
"id": "3604346598",
"brand_name": "TechSubshrine",
"kyc_status": "PENDING",
"created_date": "2025-06-19T18:06:05.523720Z"
},
{
"id": "8319446548",
"brand_name": "TechSubshrine",
"kyc_status": "PENDING",
"created_date": "2025-06-19T17:43:25.467834Z"
},
{
"id": "2343915596",
"brand_name": "TechSubshrine",
"kyc_status": "PENDING",
"created_date": "2025-06-19T16:43:53.317062Z"
},
{
"id": "4455704961",
"brand_name": "Test Name",
"kyc_status": "PENDING",
"created_date": "2025-06-19T08:53:22.411374Z"
}
]
}
}
Authorizations
Client app ID. You can find your app id in the merchant dashboard.
Client secret key. You can find your secret in the merchant dashboard.
Response
200
application/json
A paginated list of merchants.
The response is of type object
.
Copy
Ask AI
curl --request GET \
--url https://api-staging.eximpe.com/partners/merchants/ \
--header 'X-Client-ID: <api-key>' \
--header 'X-Client-Secret: <api-key>'
Copy
Ask AI
{
"success": true,
"message": "Sub-merchants retrieved successfully",
"data": {
"count": 4,
"page": 1,
"page_size": 250,
"next": null,
"previous": null,
"results": [
{
"id": "3604346598",
"brand_name": "TechSubshrine",
"kyc_status": "PENDING",
"created_date": "2025-06-19T18:06:05.523720Z"
},
{
"id": "8319446548",
"brand_name": "TechSubshrine",
"kyc_status": "PENDING",
"created_date": "2025-06-19T17:43:25.467834Z"
},
{
"id": "2343915596",
"brand_name": "TechSubshrine",
"kyc_status": "PENDING",
"created_date": "2025-06-19T16:43:53.317062Z"
},
{
"id": "4455704961",
"brand_name": "Test Name",
"kyc_status": "PENDING",
"created_date": "2025-06-19T08:53:22.411374Z"
}
]
}
}
Assistant
Responses are generated using AI and may contain mistakes.