Start earning in three simple steps. No complicated setup required.
Sign up free in under 2 minutes. Verify your email and you're ready to go.
Pick from Silver to Crown. Start with as little as GHS 10 — no maximum limit.
Your savings grow every week at your package rate — up to 98.9% per week.
Request weekly profit withdrawals. Capital unlocks after your chosen term ends.
Six tiers to match every budget. The more you save, the more you earn weekly.
Lock your capital for 63 or 91 days. Longer lock-in = bigger bonus.
Invite friends. Earn a one-time bonus when they make their first deposit, then a recurring bonus every week for as long as they keep saving.
Paid instantly the moment your referral makes their very first investment. Example: they invest GHS 100 — you earn GHS 20 right away, credited to your withdrawable balance.
Every 7 days your referral earns their own weekly profit, you earn a percentage of it too — for as long as their investment stays active. Example: they earn GHS 50 weekly — you earn GHS 5 every week.
Referral bonuses are only active for members who have made at least one deposit or investment themselves. If you haven't started saving yet, your referrals won't earn you any bonuses until you do.
Create your account, make your first deposit, then share your unique referral link to start earning.
We use bank-grade technology to protect your account and funds at every step.
Join thousands of Ghanaians saving and earning weekly with ApexFlow Partners. Start with just GHS 10 today.
| Name | Package | Amount | Rate | Weekly | Days Left | Status |
|---|---|---|---|---|---|---|
| No investments yet. | ||||||
| Date | Investment | Package | Rate | Amount | Type |
|---|---|---|---|---|---|
| No earnings yet. Activate an investment to start earning. | |||||
⚠️ Only credited weekly profit can be withdrawn. Deposited capital is returned after your lock-in term ends.
| Date | Amount | Fee | Net Payout | Network | Type | Status |
|---|---|---|---|---|---|---|
| No withdrawal requests yet. | ||||||
| Date | Type | Description | Amount | Status |
|---|---|---|---|---|
| No transactions yet. | ||||
Earn a one-time bonus when your referral makes their first deposit, then a recurring bonus every 7 days while they keep saving.
| Name | Joined | Status | Total Saved | Your Weekly Bonus |
|---|---|---|---|---|
| No referrals yet. Share your link! | ||||
🔒 Your phone number cannot be changed here. To update your registered number, please contact support via Telegram @brown_godson with your full name and referral code. Identity verification will be required.
Change your password below. You must enter your current password to save a new one.
When contacting support, you will be asked to confirm these details to prove account ownership. Never share these with anyone claiming to be staff — our team will never ask for your password or OTP.
🚨 ApexFlow staff will NEVER ask for your password or OTP. If anyone requests these — it is fraud. Report to @brown_godson on Telegram.
Change your password below. You must enter your current password to save a new one.
ApexFlow Partners Administration
| Customer | Action | Amount | Time |
|---|---|---|---|
| Loading... | |||
| Name | Phone | Saving Status | Total Invested | Refs | Joined | Notify | |
|---|---|---|---|---|---|---|---|
| Loading customers... | |||||||
| Customer | Investment | Package | Amount | Rate | Weekly | Days Left | Status |
|---|---|---|---|---|---|---|---|
| Loading investments... | |||||||
| Customer | Amount | Fee | Net Pay | Network | Phone | Date | Status | Action |
|---|---|---|---|---|---|---|---|---|
| Loading withdrawals... | ||||||||
Set how much of their available balance customers can withdraw. Changes apply immediately to all customers.
Change your admin login password. You must know the current password to set a new one.
Read-only overview of current platform configuration.
If data is not loading, it is almost always a Firestore Security Rules issue — not a code problem. Run the test below to confirm, then copy the correct rules to your Firebase Console.
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
// Allow authenticated users to read/write their own data
match /users/{userId} {
allow read, write: if request.auth != null && request.auth.uid == userId;
match /notifications/{notifId} {
allow read, write: if request.auth != null && request.auth.uid == userId;
}
}
// Investments: owner can read/write their own
match /investments/{invId} {
allow read, write: if request.auth != null;
}
// Withdrawals: authenticated users
match /withdrawals/{wdId} {
allow read, write: if request.auth != null;
}
// Transactions: authenticated users
match /transactions/{txId} {
allow read, write: if request.auth != null;
}
// Settings: any authenticated user can read (admin writes via trusted admin page)
match /settings/{docId} {
allow read: if request.auth != null;
allow write: if request.auth != null;
}
// Allow all for development — TIGHTEN BEFORE LAUNCH
match /{document=**} {
allow read, write: if request.auth != null;
}
}
}