Documentation

Build better subscription apps

Everything you need to integrate RevDash into your app. From quick starts to advanced guides.

Platform SDKs

iOS / macOS

Swift

pod 'RevDash'
View docs

Android

Kotlin

implementation 'com.revdash:sdk:1.0.0'
View docs

Web / React

TypeScript

npm install @revdash/sdk
View docs

Desktop

Multiple

See platform docs
View docs

Getting Started

1

Create your app

Sign up and create your first app in the RevDash dashboard. You'll get your API keys instantly.

2

Install the SDK

Add RevDash to your project using your preferred package manager.

3

Configure your products

Set up your subscription products in App Store Connect, Google Play, or Stripe.

4

Start tracking

Initialize RevDash in your app and start tracking subscription events automatically.

App.swift
import RevDash

@main
struct MyApp: App {
    init() {
        RevDash.configure(
            apiKey: "your_api_key"
        )
    }

    var body: some Scene {
        WindowGroup {
            ContentView()
        }
    }
}

REST API Reference

GET/v1/customers/:idRetrieve a customer
GET/v1/subscriptionsList all subscriptions
POST/v1/receipts/verifyVerify a purchase receipt
GET/v1/revenue/mrrGet current MRR
GET/v1/analytics/cohortsGet cohort analysis

View the complete API reference in your dashboard after signing up.

Ready to get started?

Create your account and start integrating RevDash today.

Start free trial