CloudFetch
For Developers

Subscriptions & Monetization

Monetize your app with flexible pricing. CloudFetch handles billing, so you focus on building.

How Monetization Works

Stripe Integration

Connect your Stripe account. Payments go directly to you.

Flexible Pricing

Create free, one-time, or recurring plans.

Entitlements API

Check what features users have access to.

Connecting Stripe

  1. 1Go to Developer Console → Your App → Settings
  2. 2Click 'Connect Stripe' and complete OAuth
  3. 3Your Stripe account is now linked
  4. 4Create pricing plans in the Pricing tab

Creating Pricing Plans

Define your pricing tiers in the Developer Console:

  • Free tier - Perfect for trials and basic usage
  • Monthly subscription - Recurring billing
  • Annual subscription - Discounted yearly plans
  • One-time purchase - Lifetime access

Checking Entitlements

Use the Entitlements API to check what a user has access to:

GET https://cloudfetch.app/api/v1/entitlements
Authorization: Bearer ACCESS_TOKEN

Response:
{
  "user_id": "usr_123",
  "app_id": "app_456",
  "plan": "pro",
  "features": ["feature_a", "feature_b"],
  "usage": { "api_calls": 1500, "limit": 10000 }
}