fbpx

Tell us about your business and we’ll find you funding.

Finance Agents helps get access to more money faster.

.typing-text .txt-type{
border-right: 1px solid #777;
}
.typing-text {
font-family: var(–brz-heading1fontfamily) !important;
}

const TypeWriter = function(txtElement, words, wait = 1000) {
this.txtElement = txtElement;
this.words = words;
this.txt = ”;
this.wordIndex = 0;
this.wait = parseInt(wait, 10);
this.type();
this.isDeleting = false;
}

// Type Method
TypeWriter.prototype.type = function() {
// console.log(‘hello’);
// current index of word
const current = this.wordIndex % this.words.length;

// get full text of current word
const fullTxt = this.words[current]

// check if deleting
if(this.isDeleting){
// remove char
this.txt = fullTxt.substring(0, this.txt.length – 1);
} else {
// add char
this.txt = fullTxt.substring(0, this.txt.length + 1);
}

// insert txt into element
this.txtElement.innerHTML = `${this.txt}`;

//Type Speed
let typeSpeed = 100;

if(this.isDeleting){
typeSpeed /= 2;
}

// if word is complete
if(!this.isDeleting && this.txt === fullTxt){
// make pause at end
typeSpeed = this.wait;
// set delete to true
this.isDeleting = true;
} else if(this.isDeleting && this.txt === ”){
this.isDeleting = false;
// move to next word
this.wordIndex++;
// pause before start typing
typeSpeed = 200;
}

setTimeout( () => this.type(), typeSpeed )
}

// init on dom load

window.addEventListener(‘load’, init);
// Init App
function init(){
const txtElement = document.querySelector(‘.txt-type’);
const words = JSON.parse(txtElement.getAttribute(‘data-words’));
const wait = txtElement.getAttribute(‘data-wait’);
// Init Typewriter
new TypeWriter(txtElement, words, wait);
}

Steps To Funding

Share Basic Information

After we have basic information about your business, we prequalify you for funding with NO IMPACT to your personal or business credit.

Compare Available Funding Options

Within 24-48 hours you’ll receive offers from leading lenders. Gaining multiple choices from a variety lenders helps you make the best decision for your business.

Choose the Best Loan

Some programs fund in as fast as 2 days, while others offer incredibly low rates and longer terms. A Funding Specialist will help you understand the benefits of each program.

About Us

Our team will provide you with clarity and insight on how to get funding for your business. We’ve helped thousands of businesses just like yours get millions of dollars in funding. We’ve worked with everything from hospice care to chocolate stores, real estate investors to FedEx routes and everything in between.

Success Stories

If it wasn’t for your team, there is no way that I could have done this. When nobody else had solutions for me, you guys came through to make this possible.

Historic Event Space Owner

St. Louis, Missouri

We were able to get the funding required to build our software and go the next level. We would still be struggling to get funding if it was not for you!

Software Company Owner

Atlanta, Georgia