Skip to main content
GET
/
partners
/
merchants
/
{merchant_id}
Get Merchant
curl --request GET \
  --url https://api-pacb-uat.eximpe.com/partners/merchants/{merchant_id}/ \
  --header 'X-API-Version: <api-key>' \
  --header 'X-Client-ID: <api-key>' \
  --header 'X-Client-Secret: <api-key>'
{
  "success": true,
  "message": "Sub-merchant details retrieved successfully",
  "data": {
    "id": "3604346598",
    "settlement_details": {
      "bank_account_number": "9876543210123456",
      "bank_account_name": "InnovateTech Solutions Private Limited",
      "bank_swift_code": "CHASUS33XXX",
      "bank_name": "JPMorgan Chase Bank",
      "bank_branch_name": "Corporate Banking Division",
      "bank_address": "270 Park Avenue",
      "bank_city": "New York",
      "bank_state": "NY",
      "bank_country": "United States",
      "bank_pincode": "10017",
      "routing_number": "021000021",
      "settlement_currency": "USD"
    },
    "created_at": "2025-06-19T18:06:05.523720Z",
    "updated_at": "2025-06-19T18:06:05.523752Z",
    "invoice_file": null,
    "company_details": {
      "legal_name": "InnovateTech Solutions Private Limited",
      "brand_name": "InnovateTech Solutions",
      "registration_number": "US-CORP-2024-IT789456",
      "international_org_type": "Private Limited Company",
      "tax_id": "94-8765432",
      "website": "https://www.innovatetech.com",
      "monthly_avg_transaction_volume": "100",
      "communication_address": "123 Tech Street",
      "communication_city": "San Francisco",
      "communication_state": "CA",
      "communication_country": "United States",
      "communication_pincode": "94105",
      "same_as_registered_address": true,
      "registered_address": "123 Tech Street",
      "registered_city": "San Francisco",
      "registered_state": "CA",
      "registered_country": "United States",
      "registered_pincode": "94105",
      "business_category": "goods_merchant",
      "business_mode": "b2b",
      "hs_codes": [
        "84713010",
        "85423100"
      ],
      "category": "E-commerce",
      "description_of_products_and_services": "We provide comprehensive IT solutions including software development, cloud migration, data analytics, and digital transformation services for enterprises. Our solutions help businesses streamline operations, improve efficiency, and accelerate digital adoption.",
      "agreement_details": "global_company aggrement"
    }
  }
}

Authorizations

X-Client-ID
string
header
required

Client Application ID - Your unique application identifier used to authenticate API requests. You can find your Client ID in the Developer Settings section of the merchant dashboard.

X-Client-Secret
string
header
required

Client Secret Key - Your secret key used alongside the Client ID for secure authentication. Keep this confidential and never expose it in client-side code. Available in the Developer Settings section of the merchant dashboard.

X-API-Version
string
header
required

API Version - Specifies which version of the API to use (e.g., '1.X.X' or '2.X.X'). This header allows you to control which API version your integration uses. Default version information is available in the Developer Settings.

Path Parameters

merchant_id
string
required

The ID of the merchant to retrieve.

Response

Merchant details retrieved successfully.

success
boolean
required
message
string
required
data
object
required