Community-powered

How long will you actually wait?

Real delivery data from Tesla owners — no official estimates, just what people actually experienced.

Deliveries logged
Avg weeks
5
Models tracked
Configure your order
Select your options to see matching deliveries
Model
Trim
Color
Region
Estimated delivery time
weeks
Best case
Median
Worst case
Data confidence
🔍
Configure your order
Select your model, config, and region to see real wait time data.
Recent community deliveries
Latest submissions from real owners
+ Add yours
Overall statistics
Wait time by model
Wait time by color
Delivery distribution — all orders
Delivery wait by region
Average weeks from order to delivery
Regional comparison
Submit your delivery
Help other owners get accurate predictions
Model
Trim
Color
Region
Connect your database
Without Supabase, submissions only save in the visitor's browser. Connect once and all data is shared across everyone.
1
Create a free Supabase project
Go to supabase.com → New project. Takes about 2 minutes. Free tier is plenty for this app.
2
Create the deliveries table
In Supabase → SQL Editor, run this:

create table deliveries (
  id uuid default gen_random_uuid() primary key,
  created_at timestamptz default now(),
  model text, config text, color text,
  region text, weeks int, note text
);

alter table deliveries enable row level security;

create policy "Anyone can read"
  on deliveries for select using (true);

create policy "Anyone can insert"
  on deliveries for insert with check (true);
3
Paste your project URL and anon key
Find these in Supabase → Project Settings → API.
✓ Delivery submitted — thanks for contributing!