<!-- mobian-agent-page publisher="dailydev" canonical="https://daily.dev/posts/taking-a-monthly-cut-rails-stripe-connect-and-recurring-billing-o1khpc8yn" -->

---
title: Taking a Monthly Cut: Rails, Stripe Connect, and...
description: A step-by-step guide to implementing recurring subscription payments with Stripe Connect in a Rails app, covering the key differences from one-time payments....
canonical: https://daily.dev/posts/taking-a-monthly-cut-rails-stripe-connect-and-recurring-billing-o1khpc8yn
twitter:card: summary_large_image
twitter:site: @dailydotdev
og:type: website
og:site_name: daily.dev
og:title: Taking a Monthly Cut: Rails, Stripe Connect, and Recurring Billing | daily.dev
og:description: A step-by-step guide to implementing recurring subscription payments with Stripe Connect in a Rails app, covering the key differences from one-time payments....
og:url: https://daily.dev/posts/taking-a-monthly-cut-rails-stripe-connect-and-recurring-billing-o1khpc8yn
og:image: https://api.daily.dev/og/posts/o1khpC8Yn.png
og:image:alt: Taking a Monthly Cut: Rails, Stripe Connect, and Recurring Billing
og:image:width: 1200
og:image:height: 630
og:locale: en
---

> ## Documentation Index
> Fetch the complete documentation index at: https://daily.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Taking a Monthly Cut: Rails, Stripe Connect, and Recurring Billing

**[Ruby Flow](https://daily.dev/sources/rubyflow)** · 4 min read · 0 upvotes · 0 comments

## Summary

A step-by-step guide to implementing recurring subscription payments with Stripe Connect in a Rails app, covering the key differences from one-time payments. Uses `subscription_data` with `application_fee_percent` and `transfer_data` in a Stripe Checkout session to automatically split monthly charges between a platform and sellers. Also covers webhook handling for background payment events and subscription cancellation via the Stripe API.

## Full article

daily.dev links to this article rather than hosting it. Read it at the original source: <https://norvilis.com/taking-a-monthly-cut-rails-stripe-connect-and-recurring-billing>

## Similar posts on daily.dev

- [Stripe Connect Simplified: Routing Payments in Your Rails App](https://daily.dev/posts/stripe-connect-simplified-routing-payments-in-your-rails-app-bqn5srtgd) · Ruby Flow · 0 upvotes · 0 comments
- [Stripe Changes, File Upload Quirks, Scaling Sidekiq](https://daily.dev/posts/stripe-changes-file-upload-quirks-scaling-sidekiq-2zve8saev) · Ruby Flow · 0 upvotes · 0 comments
- [How to Accept Crypto Payments in Rails](https://daily.dev/posts/how-to-accept-crypto-payments-in-rails-7ez2poca8) · Ruby Flow · 0 upvotes · 0 comments

---

Tags: [#rails](https://daily.dev/tags/rails), [#stripe](https://daily.dev/tags/stripe)

[View this post on daily.dev](https://daily.dev/posts/taking-a-monthly-cut-rails-stripe-connect-and-recurring-billing-o1khpc8yn)

```json
{"@context":"https://schema.org","@graph":[{"@type":"Organization","@id":"https://daily.dev/#organization","name":"daily.dev","url":"https://daily.dev","logo":{"@type":"ImageObject","url":"https://daily.dev/apple-touch-icon.png","width":180,"height":180},"sameAs":["https://twitter.com/dailydotdev","https://github.com/dailydotdev","https://www.linkedin.com/company/daily-dev-ltd"]},{"@type":"WebSite","@id":"https://daily.dev/#website","url":"https://daily.dev","name":"daily.dev","publisher":{"@id":"https://daily.dev/#organization"},"potentialAction":{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://daily.dev/search?q={search_term_string}"},"query-input":"required name=search_term_string"}}]}
{"@context":"https://schema.org","@type":"TechArticle","headline":"Taking a Monthly Cut: Rails, Stripe Connect, and Recurring Billing","url":"https://daily.dev/posts/taking-a-monthly-cut-rails-stripe-connect-and-recurring-billing-o1khpc8yn","mainEntityOfPage":{"@type":"WebPage","@id":"https://daily.dev/posts/taking-a-monthly-cut-rails-stripe-connect-and-recurring-billing-o1khpc8yn"},"datePublished":"2026-03-23T06:37:02.448Z","dateModified":"2026-03-23T06:37:26.938Z","description":"A step-by-step guide to implementing recurring subscription payments with Stripe Connect in a Rails app, covering the key differences from one-time payments....","image":"https://media.daily.dev/image/upload/f_auto,q_auto/v1/posts/15a885dbed9e4f6efae551fe6f3fd1a0?_a=AQAEuop","thumbnailUrl":"https://media.daily.dev/image/upload/f_auto,q_auto/v1/posts/15a885dbed9e4f6efae551fe6f3fd1a0?_a=AQAEuop","isAccessibleForFree":true,"articleSection":"Ruby Flow","inLanguage":"en","publisher":{"@type":"Organization","name":"daily.dev","url":"https://daily.dev","logo":{"@type":"ImageObject","url":"https://daily.dev/apple-touch-icon.png","width":180,"height":180}},"author":{"@type":"Organization","name":"Ruby Flow","logo":"https://media.daily.dev/image/upload/t_logo,f_auto/v1/logos/a21aaa8bcbbf448193a016895c90a0e1","url":"https://daily.dev/sources/rubyflow"},"commentCount":0,"discussionUrl":"https://daily.dev/posts/taking-a-monthly-cut-rails-stripe-connect-and-recurring-billing-o1khpc8yn","interactionStatistic":[{"@type":"InteractionCounter","interactionType":{"@type":"LikeAction"},"userInteractionCount":0},{"@type":"InteractionCounter","interactionType":{"@type":"CommentAction"},"userInteractionCount":0}],"keywords":"rails,stripe","timeRequired":"PT4M"}
{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://daily.dev"},{"@type":"ListItem","position":2,"name":"Ruby Flow","item":"https://daily.dev/sources/rubyflow"},{"@type":"ListItem","position":3,"name":"Taking a Monthly Cut: Rails, Stripe Connect, and Recurring Billing"}]}
```

