Skip to main content

Quick Start

Add a feature request portal to your iOS app in 5 minutes. Your users can submit ideas, vote, and see your roadmap — all with a single link.

Step 1: Create your project

  1. Sign up at featkit.com
  2. Create a project (usually one per app)
  3. Your portal is live immediately at: https://featkit.com/p/[your-project-slug]

Step 2: Get your credentials

  1. Go to Project Settings → Signed Links
  2. Copy your Project ID and Secret Key
  3. You’ll use these to authenticate users

Step 3: Add to your app

Open the portal from anywhere in your app:
import SafariServices

func openFeatKitPortal() {
    let url = URL(string: "https://featkit.com/p/your-project-slug")!
    let safari = SFSafariViewController(url: url)
    present(safari, animated: true)
}
So users don’t need to create accounts, pass their identity via Signed Links.

Signed Links

Learn how to authenticate users seamlessly

That’s it

Your users can now submit feature requests. View them in your dashboard at featkit.com.

Next steps