Build better subscription apps
Everything you need to integrate RevDash into your app. From quick starts to advanced guides.
Getting Started
Create your app
Sign up and create your first app in the RevDash dashboard. You'll get your API keys instantly.
Install the SDK
Add RevDash to your project using your preferred package manager.
Configure your products
Set up your subscription products in App Store Connect, Google Play, or Stripe.
Start tracking
Initialize RevDash in your app and start tracking subscription events automatically.
import RevDash
@main
struct MyApp: App {
init() {
RevDash.configure(
apiKey: "your_api_key"
)
}
var body: some Scene {
WindowGroup {
ContentView()
}
}
}Popular Guides
Implementing Subscriptions
Learn how to add subscription support to your app with RevDash.
Setting Up Webhooks
Configure real-time notifications for subscription events.
User Management
Track and manage your subscribers across devices.
Analytics & Reporting
Understanding your revenue metrics and cohort analysis.
Security Best Practices
Secure your integration and protect customer data.
Migration Guide
Moving from RevenueCat, Adapty, or other platforms.
REST API Reference
/v1/customers/:idRetrieve a customer/v1/subscriptionsList all subscriptions/v1/receipts/verifyVerify a purchase receipt/v1/revenue/mrrGet current MRR/v1/analytics/cohortsGet cohort analysisView the complete API reference in your dashboard after signing up.