Getting Started
Set up stryhub and make your first integration in under 5 minutes. This guide walks you through account creation, Stripe connection, product setup, and webhook configuration.
Step 1: Create Your Account
Sign up for a stryhub account using your email address. After registration, you'll be taken to the admin dashboard where you can manage everything.
- Go to the stryhub registration page
- Enter your email and create a password
- Confirm your email address
- Log in to the admin dashboard
Step 2: Connect Your Stripe Account
stryhub uses Stripe Connect to handle payments. This means your customers' payments go directly to your Stripe account, with the platform fee automatically deducted.
- In the dashboard, go to Settings
- Click Connect Stripe Account
- You'll be redirected to Stripe to authorize the connection
- Once connected, you'll see your Stripe account status as "Active"
Step 3: Create Your First Product
Products in stryhub represent what you're selling — a SaaS subscription, a one-time purchase, or any digital product.
- Go to Products in the dashboard
- Click New Product
- Fill in the product details:
- Name: The product name your customers will see
- Price: Set a one-time or recurring price
- Currency: Choose your currency
- Billing interval: Monthly, yearly, etc. (for subscriptions)
- Click Create
After creating a product, you'll get a checkout link that you can share with customers or embed in your website.
Step 4: Configure a Webhook Endpoint
Webhooks allow stryhub to notify your system in real-time when events happen (payments, subscriptions, etc.).
- Go to Webhooks in the dashboard
- Click New Integration
- Enter your endpoint URL (e.g.,
https://your-app.com/webhooks/stryhub) - Select which events you want to receive
- Click Create Integration
You'll receive a signing secret (starts with whsec_). Save this — you'll need it to verify webhook signatures in your application.
Step 5: Test Your Integration
Before going live, test that everything works correctly:
- In the Webhooks page, click the Send Test button (lightning icon) next to your endpoint
- This sends a
pingevent to your endpoint - Check the Logs to see the delivery status
- Verify your application received the webhook and responded with a
2xxstatus code
You can also create a test checkout:
- Use Stripe test mode with test card
4242 4242 4242 4242 - Complete a checkout for one of your products
- Check the webhook logs — you should see
checkout.completedandpayment.completedevents
Next Steps
- Webhook Integration Guide — Learn how to verify signatures and handle events in your application
- Affiliate Programs — Set up an affiliate program to scale your sales
- Events & API Reference — Complete reference for all event types and payload schemas