GET
/v1/account/profileGet merchant profile
Returns your sub-merchant profile, KYC status, and enabled features.
Authentication
Secret Key — send Authorization: Bearer YOUR_KEY header.
Response fields
| Field | Type | Description |
|---|---|---|
id | string | Merchant ID |
business_name | string | Registered business name |
kyc_status | string | pending | approved | rejected |
statement_descriptor | string | Visa descriptor suffix (max 14 chars) |
Code examples
bash
curl https://api.watenga.africa/v1/account/profile \
-H "Authorization: Bearer sk_test_YOUR_KEY"Response example
json
{
"success": true,
"data": {
"id": "mer_01HQ",
"business_name": "Acme Trading",
"kyc_status": "approved",
"statement_descriptor": "ACME TRADING"
}
}