.ob-overlay { position: fixed; inset: 0; z-index: 1000; background: rgba(5,12,22,.92); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity .3s; } .ob-overlay.open { opacity: 1; pointer-events: all; } .ob-modal { background: var(--iron); border-radius: 14px; width: 100%; max-width: 600px; border: 1px solid rgba(255,107,0,.25); box-shadow: 0 40px 100px rgba(0,0,0,.7); overflow: hidden; transform: translateY(20px) scale(.97); transition: transform .3s; display: flex; flex-direction: column; } .ob-overlay.open .ob-modal { transform: translateY(0) scale(1); } .ob-progress-bar { height: 3px; background: rgba(255,255,255,.07); } .ob-progress-fill { height: 100%; background: var(--bolt); transition: width .4s cubic-bezier(.4,0,.2,1); } .ob-steps-row { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 20px 28px 0; } .ob-step-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.15); transition: all .3s; position: relative; } .ob-step-dot.done { background: var(--green); } .ob-step-dot.active { background: var(--bolt); width: 24px; border-radius: 4px; } .ob-step-dot.done::after { content: '✓'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); font-size: 10px; color: var(--green); font-weight: 700; } .ob-body { padding: 28px 36px 24px; flex: 1; min-height: 340px; } .ob-step-eyebrow { font-family: 'Roboto Mono', monospace; font-size: 10px; letter-spacing: 3px; color: var(--bolt); text-transform: uppercase; margin-bottom: 10px; } .ob-step-title { font-family: 'Barlow Condensed', sans-serif; font-size: 34px; font-weight: 800; color: var(--white); line-height: 1.05; margin-bottom: 8px; } .ob-step-title em { color: var(--bolt); font-style: normal; } .ob-step-sub { font-size: 14px; color: var(--mist); line-height: 1.6; margin-bottom: 24px; } .ob-welcome-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; } .ob-feature-card { background: var(--steel); border-radius: 8px; padding: 16px; border: 1px solid rgba(255,255,255,.07); text-align: center; } .ob-feature-icon { font-size: 28px; margin-bottom: 8px; } .ob-feature-name { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 4px; } .ob-feature-desc { font-size: 12px; color: var(--mist); line-height: 1.5; } .ob-form { display: flex; flex-direction: column; gap: 14px; } .ob-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; } .ob-field { display: flex; flex-direction: column; gap: 6px; } .ob-label { font-size: 11px; font-weight: 700; color: var(--mist); text-transform: uppercase; letter-spacing: .8px; } .ob-input { background: var(--steel); border: 1px solid rgba(255,255,255,.12); border-radius: 4px; padding: 10px 13px; font-size: 14px; color: var(--white); font-family: 'Barlow', sans-serif; transition: border-color .2s; } .ob-input:focus { outline: none; border-color: var(--bolt); } .ob-input::placeholder { color: #4A5E70; } .ob-select { background: var(--steel); border: 1px solid rgba(255,255,255,.12); border-radius: 4px; padding: 10px 13px; font-size: 14px; color: var(--white); font-family: 'Barlow', sans-serif; appearance: none; cursor: pointer; transition: border-color .2s; } .ob-select:focus { outline: none; border-color: var(--bolt); } .ob-specialty-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; } .ob-spec-chip { display: flex; align-items: center; gap: 10px; background: var(--steel); border: 1.5px solid rgba(255,255,255,.08); border-radius: 6px; padding: 12px 14px; cursor: pointer; transition: all .15s; } .ob-spec-chip:hover { border-color: rgba(255,107,0,.4); background: rgba(255,107,0,.04); } .ob-spec-chip.selected { border-color: var(--bolt); background: rgba(255,107,0,.1); } .ob-spec-chip.selected .ob-spec-check { opacity: 1; } .ob-spec-icon { font-size: 22px; flex-shrink: 0; } .ob-spec-label { font-size: 13px; font-weight: 600; color: var(--white); flex: 1; } .ob-spec-check { width: 18px; height: 18px; border-radius: 50%; background: var(--bolt); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 800; flex-shrink: 0; opacity: 0; transition: opacity .15s; } .ob-member-list { display: flex; flex-direction: column; gap: 10px; } .ob-member-row { display: flex; align-items: center; gap: 12px; background: var(--steel); border-radius: 6px; padding: 12px 14px; border: 1.5px solid rgba(255,255,255,.07); transition: border-color .15s; } .ob-member-row.connected { border-color: var(--green); background: rgba(29,185,84,.04); } .ob-member-avatar { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: #fff; flex-shrink: 0; } .ob-member-info { flex: 1; } .ob-member-name { font-size: 14px; font-weight: 700; color: var(--white); } .ob-member-meta { font-size: 12px; color: var(--mist); } .ob-connect-btn { background: rgba(255,107,0,.1); border: 1px solid rgba(255,107,0,.3); color: var(--bolt); padding: 7px 14px; border-radius: 4px; font-size: 12px; font-weight: 700; cursor: pointer; font-family: 'Barlow', sans-serif; transition: all .15s; white-space: nowrap; } .ob-connect-btn:hover { background: rgba(255,107,0,.2); } .ob-connect-btn.done { background: rgba(29,185,84,.1); border-color: rgba(29,185,84,.3); color: var(--green); cursor: default; } .ob-checklist { display: flex; flex-direction: column; gap: 8px; } .ob-check-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--chrome); } .ob-check-item::before { content: '✓'; color: var(--green); font-weight: 800; font-size: 14px; flex-shrink: 0; } .ob-finish-hero { text-align: center; padding: 10px 0 20px; } .ob-finish-icon { font-size: 64px; margin-bottom: 12px; animation: obBounce .6s ease; } @keyframes obBounce { 0%{transform:scale(0) rotate(-10deg)} 60%{transform:scale(1.15) rotate(3deg)} 100%{transform:scale(1) rotate(0)} } .ob-finish-title { font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 800; color: var(--white); margin-bottom: 8px; } .ob-finish-title em { color: var(--bolt); font-style: normal; } .ob-finish-sub { font-size: 14px; color: var(--mist); line-height: 1.6; margin-bottom: 20px; } .ob-finish-actions { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; } .ob-finish-action { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 8px; padding: 14px 12px; cursor: pointer; text-align: center; transition: all .15s; font-family: 'Barlow', sans-serif; } .ob-finish-action:hover { border-color: rgba(255,107,0,.4); background: rgba(255,107,0,.06); } .ob-finish-action-icon { font-size: 24px; margin-bottom: 6px; } .ob-finish-action-label { font-size: 13px; font-weight: 700; color: var(--white); } .ob-finish-action-sub { font-size: 11px; color: var(--mist); margin-top: 3px; } .ob-footer { display: flex; align-items: center; justify-content: space-between; padding: 16px 28px 20px; border-top: 1px solid rgba(255,255,255,.07); background: rgba(0,0,0,.12); } .ob-btn-skip { background: transparent; border: none; color: var(--mist); font-size: 13px; cursor: pointer; font-family: 'Barlow', sans-serif; text-decoration: underline; text-underline-offset: 3px; } .ob-btn-skip:hover { color: var(--white); } .ob-btn-back { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); color: var(--mist); padding: 10px 18px; border-radius: 4px; font-size: 14px; cursor: pointer; font-family: 'Barlow', sans-serif; transition: all .15s; } .ob-btn-back:disabled { opacity: .3; cursor: default; } .ob-btn-next { background: var(--bolt); color: #fff; border: none; padding: 10px 24px; border-radius: 4px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: 'Barlow', sans-serif; transition: background .15s; min-width: 130px; } .ob-btn-next:hover { background: var(--bolt-dim); } .ob-btn-next.finish { background: var(--green); } .ob-btn-next.finish:hover { background: #17a344; } @media (max-width: 768px) { .ob-body { padding: 20px 20px 16px; min-height: 260px; } .ob-footer { padding: 14px 20px 18px; } .ob-step-title { font-size: 26px; } .ob-welcome-grid { grid-template-columns: 1fr 1fr; gap: 8px; } .ob-field-row { grid-template-columns: 1fr; } .ob-specialty-grid { grid-template-columns: 1fr 1fr; } .ob-finish-actions { grid-template-columns: 1fr; } }
Done!
instant message
Click to reply →
// Parts sourcing network

Find parts.
Close deals.
In real time.

BreakerQuote connects parts dealers and buyers in a private network — send quote requests, chat live with members, and close deals faster than ever.

No credit card required · Cancel anytime
// Live quote board
Alternator — BMW 3 Series (E90)NEW
Requested by MarkyMark Auto · 14 min ago · 4 responses
LKQ Door Panel — Ford F-150 20195 RESP.
Requested by Deals on Wheels · 2 hrs ago
Transmission — Chevy Silverado 1500NEW
Requested by CityAuto Parts · just now

// How it works

Three steps to your next deal.

01
🔐

Create your account

Sign up and pick a plan for your team size. Each user gets their own login and dashboard.

02
📋

Post a quote request

Describe the part — make, model, year, condition — and send it to members in your network instantly.

03
💬

Chat & close the deal

Message members live, negotiate in real time, and close the deal without ever leaving the platform.


// Pricing

Simple, honest pricing.

Monthly
Yearly 2 MONTHS FREE
Solo
$10
$7.50
per month · 1 user
per month, billed $90/yr · 1 user
🎉 You save $30/year
That's 2 months completely free
  • 1 user login
  • Unlimited quote requests
  • Live member chat
  • Full network access
Duo
$15
$11.25
per month · 2 users
per month, billed $135/yr · 2 users
🎉 You save $45/year
That's 2 months completely free
  • 2 user logins
  • Unlimited quote requests
  • Live member chat
  • Full network access
Team
$30
$22.50
per month · 5+ users
per month, billed $270/yr · 5+ users
🎉 You save $90/year
That's 2 months completely free
  • 5+ user logins
  • Unlimited quote requests
  • Live member chat
  • Full network access
  • Priority listing
  • Admin dashboard

// What members say

Built for people who know parts.

"We used to spend hours calling around. Now we post once, get five replies in an hour, and close in the chat. Total game changer."
R
Randy Kowalski
Owner, Route 9 Auto Salvage
"The live chat is the killer feature. I messaged a guy about a transmission, negotiated the price, and we had a deal in under 10 minutes."
D
Diana Chen
Parts Manager, Metro Fleet Services
"It's like AIM for the salvage yard world. I can see who's online, shoot them a message, and know I'm getting a real answer fast."
M
Marcus J.
Independent Mechanic, Detroit MI

// Savings calculator

See what BreakerQuote
saves you.

How many parts do you source per month?
10 parts/mo
What's your average spend per part?
$150 avg
How many users need access?
Solo
1 user · $10/mo
Duo
2 users · $15/mo
Trio
3 users · $20/mo
Team
5+ users · $30/mo
Your estimated savings
$0
saved per year
No credit card required · Cancel anytime

// Frequently asked questions

Everything you want
to know.

What industries does BreakerQuote serve?+
BreakerQuote is built for professionals who source electrical, industrial, automation, marine, and related parts and equipment. Whether you're a controls engineer hunting for a specific breaker, a marine technician sourcing components, or a facilities manager buying in bulk — BreakerQuote connects you directly with the suppliers who have what you need.
How is BreakerQuote different from just emailing suppliers?+
Three big differences. First, you send one request and multiple suppliers respond — instead of firing off 10 separate emails. Second, responses come back in a structured format so you can compare price, condition, and availability side by side instantly. Third, the live messenger means you can negotiate, ask follow-up questions, and close the deal in the same conversation — no phone tag, no back-and-forth emails.
Does BreakerQuote handle the actual transaction?+
No — BreakerQuote is a sourcing and communications platform. When you accept a quote, the deal and payment happen directly between you and the supplier. We connect the parties and facilitate the conversation; we don't process parts payments or take a cut of transactions. This keeps things simple and gives you full control over how you pay and receive goods.
How fast do suppliers typically respond?+
Our network averages under 20 minutes for an initial response on active quote requests. Members who are online show a green status indicator — you can see in real time who's available before you send. For urgent requests, you can flag your quote as "Urgent (24 hrs)" and active members are notified immediately.
Can I try it before committing to a subscription?+
Yes — new subscribers get a 7-day full-access trial. No credit card is required to start. If you send your first quote request and don't find it useful within 7 days, just cancel and you won't be charged. We're confident you'll close your first deal before the trial ends.
What happens to my data if I cancel?+
Your account data — including quote history, messages, and profile — is retained for 90 days after cancellation in case you want to reactivate. After 90 days it is permanently deleted. You can also request immediate deletion at any time by contacting privacy@breakerquote.com. We never sell your data to third parties.
How does the pricing work for teams?+
Plans are flat-rate by team size — not per-seat billing that adds up fast. Solo is $10/month for 1 user, Duo is $15 for 2, Trio is $20 for 3, and Team is $30 for 5 or more. Each user gets their own login, inbox, and dashboard. If you go annual, you get 2 months free on any plan — the Trio annual plan works out to $15/month instead of $20.
Can I upgrade or downgrade my plan?+
Absolutely. Upgrades take effect immediately and are prorated for the rest of your billing period. Downgrades take effect at the start of your next billing cycle — you keep your current plan until then. You can change plans anytime from your Account Settings page with no penalties.
Is the live chat actually real-time?+
Yes. The messenger works like classic AIM or Yahoo Messenger — you can see who's online in your buddy list, open chat windows with any member, and messages deliver instantly. You can have multiple conversations open at the same time. There's also a typing indicator so you know when someone's responding, and a notification sound when a new message arrives.
How do I know suppliers are legitimate?+
Every member has a public profile showing their response rate, total quotes sent, average response time, and verified reviews from other members. You can see a full history before you engage. That said — BreakerQuote does not independently verify inventory, certifications, or part authenticity. We strongly recommend verifying condition and specs directly with the supplier before completing any transaction.
What if a supplier sends me a bad part?+
Disputes over parts quality, condition, or delivery are handled directly between you and the supplier — BreakerQuote is a communications platform and is not a party to the transaction. We strongly recommend confirming condition, warranty terms, and return policies in the chat before accepting a quote. You can also leave a review on the supplier's profile to help other members make informed decisions.
Is my information secure?+
Yes. All data is encrypted in transit via HTTPS/TLS. Passwords are hashed with bcrypt — never stored in plain text. Payment card data is handled exclusively by Stripe and never touches our servers. We never sell your personal information to advertisers or third parties. Full details are in our Privacy Policy at breakerquote.com/privacy.
Still have questions?
We're real people. Reach out and we'll get back to you same day.
Contact Us
Sign in to your account
No account? Sign up free
← Back to homepage

Good morning, John 👋

Here's your parts activity at a glance.

Open Requests
4
2 with responses
Quotes Received
11
This month
Unread Messages
3
From 3 members
Deals Closed
7
All time

Recent Quote Requests

Your latest open requests
PartVehicleConditionResponsesStatusSent
AlternatorBMW 3 Series E90LKQ/Used44 Responses2 hrs ago
Door Panel (Front L)Ford F-150 2019OEM New0Open5 hrs ago
Transmission 6-spdChevy Silverado 1500Rebuilt22 ResponsesYesterday
RadiatorHonda Accord 2016Any0Open2 days ago

New Quote Request

Describe the part and send it to members in your network.

Part Details

Be specific — the more detail, the better quotes you'll receive.

Send To

Choose members to receive this request.
MA
MarkyMark Auto
Salvage Dealer
DP
Delta Parts Co.
Wholesaler
GP
Great Lakes Parts
Auto Recycler
FP
FastParts Inc.
OEM Supplier
RJ
RJ's Salvage
Salvage Yard
CP
City Parts LLC
Retail Dealer
3 members selected · Select All

My Quote Requests

Click any request to view and compare responses.

All Requests

Sorted by most recent
PartVehicleSent ToResponsesStatusDate
AlternatorBMW 3 Series E904 members4 responses4 ResponsesJun 22 View →
Door Panel (Front L)Ford F-150 20193 members0 responsesOpenJun 22 View →
Transmission 6-spdChevy Silverado 15005 members2 responses2 ResponsesJun 21 View →
RadiatorHonda Accord 20164 members0 responsesOpenJun 20 View →
Starter MotorToyota Camry 20186 members6 responses✓ Deal ClosedJun 15 Closed

Alternator — BMW 3 Series E90

4 responses received · Sent Jun 22 to 4 members

4 RESPONSES

Inbox

Quote responses and messages from network members.

Messages

3 unread
MA
MarkyMark Auto2:14 PM
Re: Alternator — BMW 3 Series E90
We have a low-mileage unit at $145 OBO. Tested and guaranteed...
DP
Delta Parts Co.1:47 PM
Re: Alternator — BMW 3 Series E90
Got a reman unit at $89. 12-month warranty included...
RJ
RJ's Salvage11:32 AM
Re: Transmission — Chevy Silverado 1500
Pulled one last week, 78k miles. Asking $650...
GP
Great Lakes PartsYesterday
Re: Alternator — BMW 3 Series E90
Sorry, we don't carry that model. Will keep an eye out...

Member Network

Browse dealers and buyers on BreakerQuote.

Back to Members
MA
MarkyMark Auto
Salvage Dealer · Detroit, MI
🟢 Online now
"Buying all day 🔧"
About
Parts Specialties
Recent Activity
Performance
Member Reviews

Account & Plan

Manage your subscription and profile.

📈 Quote Analytics

Track your performance, response rates, and savings over time.

Last updated: Today, Jun 22
Quote Activity
Requests sent vs responses received
Sent Responses Deals Closed
Response Breakdown
What happened to your quotes
Avg Price per Quote
Best accepted price vs avg market offer
Top Members by Response
Who responds to your quotes most
Quotes by Part Category
What you source most
Recent Deals Closed
Your accepted quotes and savings
Menu
🌐 Members
📈 Analytics
⚙️ Account & Plan
💬 Online Now
🚪 Log Out
🤝
Confirm This Deal
Make sure everything looks right before notifying the seller.
Part
From
Condition
Shipping
Price
Accepting notifies the seller that you want to proceed. They'll reach out to arrange payment and delivery. A chat window opens automatically so you can coordinate.