Integrations

Webview Link
Direct link to your branded investor portal at invest.apexwealth.in

Usage

Share this link directly with your customers or use it in your mobile app as a webview. The portal will display your branding and configured features.

Mobile App Integration

iOS (Swift)

let webView = WKWebView()
webView.load(URLRequest(
  url: URL(string: 
    "https://invest.apexwealth.in")!
))

Android (Kotlin)

webView.loadUrl(
  "https://invest.apexwealth.in"
)

React Native

<WebView
  source={{ 
    uri: "https://invest.apexwealth.in" 
  }}
/>

Flutter

WebView(
  initialUrl: 
    "https://invest.apexwealth.in",
)