SwiftGoma.SwiftGoma

Search endpoints

Jump to any API endpoint by name, method, or path

Seller Profile

Get my seller profile

GET/api/v1/seller/my-profile

Returns the signed-in seller's profile, including their KYC status, subscription, wallet settings, shops, and recent invoices.

Requires Authorization
SELLER only
Session
Request
curl --request GET \
  --url https://api.swiftgoma.com/api/v1/seller/my-profile \
  --header 'Authorization: Bearer <access_token>'
200Example response
{
  "success": true,
  "data": {
    "id": "sp_2b3c4d",
    "userId": "3f2a1c9e",
    "businessName": "Boutique Aline",
    "businessDescription": "Vente de produits alimentaires et de boissons en gros et au détail à Goma.",
    "logoUrl": "https://res.cloudinary.com/dx3wclabo/image/upload/v1/sellers/aline-logo.jpg",
    "bannerUrl": "https://res.cloudinary.com/dx3wclabo/image/upload/v1/sellers/aline-banner.jpg",
    "contactPhone": "243812345678",
    "contactEmail": "boutique.aline@example.com",
    "whatsappNumber": "243812345678",
    "address": "12 Avenue du Lac",
    "city": "Goma",
    "status": "ACTIVE",
    "createdAt": "2026-01-05T08:00:00.000Z",
    "kyc": {
      "id": "kyc_8f1e2a",
      "status": "APPROVED"
    },
    "subscription": {
      "id": "sub_9c8d7e",
      "planId": "plan_starter",
      "status": "ACTIVE"
    },
    "walletSettings": {
      "payoutPhoneNumber": "243812345678",
      "provider": "MTN_MOMO_COD"
    },
    "shops": [
      {
        "id": "shop_2b3c4d",
        "name": "Boutique Aline",
        "slug": "boutique-aline",
        "status": "PUBLISHED"
      }
    ],
    "invoices": []
  }
}