Documentation
Getting started with HighGrow
Set up smart links, SDK tracking, and ASO in one dashboard. Sign in for the interactive setup checklist — this page is public so you can read integration guides without an account.
Your environment
Use these URLs when integrating SDKs or testing links.
Interactive setup checklist
Track progress on links, QR codes, ASO apps, and Shopify inside your dashboard.
Setup overview
1. Create a free account
Register to get an organization, default project, and SDK credentials.
Create account →2. Create your first smart link
Short links route users to the right app store, deep link, or website based on their device.
Sign in to dashboard →3. Install the SDK
Add the HighGrow SDK to your app and initialize with your project SDK key from the dashboard.
Open Developer Hub (sign in) →4. Track events & analytics
Send install, open, and purchase events from your app to measure attribution.
View features →Platform features
Deep link setup — why links open the store
If Android/iOS fields are Play Store / App Store URLs, users go to the store. To open your installed app, set a URL scheme on the project and use scheme links (not store URLs) on the smart link.
- Projects → Digi Bazar → Edit values
- URL scheme — without
://, e.g.myapp - Android package —
com.example.myapp.android - iOS bundle ID —
com.example.myapp - Store URLs only as fallback when the app is not installed
- URL scheme — without
- Register that scheme in your app
- AndroidManifest:
<data android:scheme="myapp" /> - iOS Info.plist: URL Types → URL Schemes =
myapp
- AndroidManifest:
- Smart Links destinations
- Android / iOS:
myapp://sale/audionic(not store URLs) - Fallback: Play Store / App Store URL
- Web: your website
- Android / iOS:
SDK quick start
Replace placeholder keys with your project credentials after signing up.
import HighGrow from '@highgrow/web-sdk';
const hg = HighGrow.init('gos_your_key', {
apiUrl: 'https://highgrow.app/api/v1',
sdkSecret: 'goss_your_secret',
});
await hg.track('app_open');
const deferred = await hg.getDeferredLink();Add the package: npm install @highgrow/web-sdk