Our privacy policy explains what data we collect, how we use it, and your choices.

Privacy Policy

This privacy policy describes the practices for Commercial Finance Now (COMFINOW®) and pertains solely to data obtained by our organization.

What This Policy Covers

• What personally identifiable information we receive through the website or email, how it’s used, and with whom it may be shared. • Your options regarding the use of your data. • The security methods in place to safeguard misuse. • How to correct any inaccuracies.

Information Collection, Use & Sharing

We may use advanced analytics (including AI transcription of recorded calls) to generate service insights (e.g., training). We are the sole owners of information gathered on this site. We only access data you voluntarily provide via form submission, email, or other direct contact. We do not sell or rent your information. We use your information to respond to your request and do not share it outside our organization except when necessary to fulfill your request (e.g., to submit credit applications). Unless you ask us not to, we may contact you about specials, new products/services, or policy updates.

Your Choices & Control

You may opt out of future communications at any time. Contact us to: • See what data we have about you. • Change/correct your data. • Request deletion. • Express concerns about our use of your data.

Security

We use HTTPS/HSTS so that sensitive information is encrypted in transit (look for the lock and https://www.commercialfinancenow.com). We also employ clickjack protections. Confidential data (e.g., credit applications, decision-maker contacts, funding documents) is AES-256-bit encrypted and securely delivered. Access to personally identifiable information is role-based and limited to employees who need it to perform specific duties. We maintain AES-256 encrypted storage at rest in the cloud.

We want you to know exactly how we use your information: what we collect, how we use it, with whom it’s shared, and your rights (access, correction, deletion). Your privacy matters, and we work to protect it.

Federal Compliance

Commercial Finance Now® is a Money Service Business (MSB) operating as a Non-Bank Financial Institution (NBFI) that abides by Anti-Money Laundering (AML) regulations, including sanctions screening and transactional monitoring.

Updates

Our Privacy Policy may change from time to time. All updates will be posted on this page.

Contact

If you believe we are not abiding by this policy, contact us at 844-44-COMFI or webmaster@commercialfinancenow.com.

VISIT COMMERCIALFINANCENOW.COM

Serving Clients For Life.®

const makeCatalog = (items) => ({ "@context": "https://schema.org", "@type": "OfferCatalog", "name": CATALOG_NAME, "url": CATALOG_URL, "itemListElement": items .map(n => String(n || "").trim()) .filter(n => n.length >= 3 && /[A-Za-z]/.test(n) && !/^(learn more|image|click here)$/i.test(n) ) .slice(0, MAX_ITEMS_SAFETY) .map((name, i) => ({ "@type": "Service", "name": name, "@id": CATALOG_URL + "#" + toSlug(name), "url": CATALOG_URL + "#" + toSlug(name) })) }); … if (catalog && Array.isArray(catalog.itemListElement) && catalog.itemListElement.length) { catalog.name = CATALOG_NAME; catalog.url = CATALOG_URL; catalog.itemListElement = uniqueBy( catalog.itemListElement .map(x => { const name = String(x.name || "").trim(); if (!name || name.length < 3 || !/[A-Za-z]/.test(name)) return null; const id = CATALOG_URL + "#" + toSlug(name); return { "@type": "Service", name, "@id": id, "url": id }; }) .filter(Boolean), x => x["@id"] ); injectJSONLD(catalog); }