By Invitation — Strictly Private

Where
Exceptional
Meets Exclusive

Do not follow us — just bookmark us.

0
Applications
4.2%
Acceptance Rate
100%
Verified
Absolute Privacy
No public profiles. No searchable identity. Every exchange shielded by design.
Curated Excellence
Both sides personally vetted. Only the exceptional gain entry.
Full Accountability
Every member verified. Identity and financial standing on record.
Seamless Exchange
Matched by tier and preference. The friction removed. The experience elevated.
Creator Tiers

Three Levels of Excellence

Tiers are assigned by our curatorial team based on demand, portfolio quality, and exclusivity.

```
Entry
Select
R500 – R2,000 / month
Approved creators building their presence on the platform.
  • Access to verified members
  • Custom content requests
  • 80% revenue share
  • Platform protection
Premium
Gold
R2,000 – R8,000 / month
Established creators with consistent demand and high-quality portfolios.
  • Priority matching to members
  • Custom content at premium rates
  • 82% revenue share
  • Dedicated support
Elite
Platinum
R8,000 – R25,000+ / month
The pinnacle. Exclusive access, highest earning potential, maximum demand.
  • Matched to top-tier members only
  • Unlimited custom content pricing
  • 85% revenue share
  • Concierge management
```
Your Invitation

Begins here

Applications close when capacity is reached.

Creator Application

Apply to Create

Every application reviewed personally.
Only the exceptional are accepted.

```
Currently accepting South African residents only
Select R500–R2k/mo
Gold R2k–R8k/mo
Platinum R8k–R25k+/mo
Click to upload — presentation and quality are everything
Banking Details — Payouts sent directly to you
How Payouts Work

Once approved and active, earnings are paid directly into your South African bank account every 2 weeks. Minimum payout is R500. Platform fee is 15–20% depending on your tier.

Privacy Notice

Your banking details are encrypted and stored securely. They are never visible to members and are used exclusively for processing your earnings payouts.

```
Member Application

Apply to Join

Membership granted only to verified,
financially qualified individuals.

```
Currently accepting South African residents only
Financial Verification

Upon approval you will verify financial standing via bank statement or asset documentation. All data is encrypted and never visible to creators.

Legal Accountability

All content is licensed, not owned. Redistribution carries liquidated damages of R100,000 per instance. Government ID is required and held securely on file.

Payment Details — How you pay for content
How Billing Works

Upon approval, your membership and content purchases are billed via EFT or debit order directly from your South African bank account. All transactions are encrypted and discreet — VELOUR will not appear on statements.

```

Application Received

Admin Panel

Application Review

Review, approve, or deny incoming creator and member applications.

```
0
Total
0
Pending
0
Approved
0
Creators
0
Members
0
Platinum Apps
Supabase Setup — Save Applications to a Real Database
Step 1: Go to supabase.com → Create free account → New project
Step 2: In Supabase SQL editor, run this to create your table:
CREATE TABLE applications (
  id BIGSERIAL PRIMARY KEY,
  type TEXT,
  status TEXT DEFAULT 'pending',
  name TEXT,
  email TEXT,
  age TEXT,
  country TEXT DEFAULT 'za',
  style TEXT,
  availability TEXT,
  tier TEXT,
  photos TEXT,
  networth TEXT,
  spend TEXT,
  referral TEXT,
  bank TEXT,
  acc_type TEXT,
  acc_number TEXT,
  acc_name TEXT,
  created_at TIMESTAMPTZ DEFAULT NOW()
);
Step 3: Go to Settings → API → copy your Project URL and anon public key
Step 4: Open this HTML file in a text editor, find SUPABASE_URL and SUPABASE_KEY near the top of the script and paste your values
Step 5: Re-upload the file to your host — done. All applications now save to your database and you can view them from any device.
```