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.

API: https://highgrow.app

Smart links: https://go.highgrow.app

Open API documentation (Swagger)

Interactive setup checklist

Track progress on links, QR codes, ASO apps, and Shopify inside your dashboard.

Sign in to 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

Smart Links

Create short links with device-aware routing for iOS, Android, and web.

Learn more →

QR Codes

Generate branded PNGs tied to smart links or static URLs — download and share.

Learn more →

ASO

Track iOS, Android & Mac apps: keywords, reviews, alerts, and exports.

Learn more →

Shopify

Connect your store for revenue insights, segments, and email campaigns.

Learn more →

Campaigns & UTM

Organize marketing campaigns with UTM parameters and attribution.

Learn more →

Referral Programs

Launch referral codes, leaderboards, and anti-fraud rules.

Learn more →
New

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.

  1. Projects → Digi Bazar → Edit values
    • URL scheme — without ://, e.g. myapp
    • Android package com.example.myapp.android
    • iOS bundle IDcom.example.myapp
    • Store URLs only as fallback when the app is not installed
  2. Register that scheme in your app
    • AndroidManifest: <data android:scheme="myapp" />
    • iOS Info.plist: URL Types → URL Schemes = myapp
  3. Smart Links destinations
    • Android / iOS: myapp://sale/audionic (not store URLs)
    • Fallback: Play Store / App Store URL
    • Web: your website

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