Taking a closer look at the former NBA player's financial situation

Posted by Jenniffer Sheldon on Thursday, June 6, 2024

After immigrating to the U.S. from the Dominican Republic in 1989, Felipe Lopez quickly rose to prominence in New York City’s basketball scene.

Lopez became the best high school basketball player in the city and one of the best in the country, even gracing the cover of Sports Illustrated. He then attended St. John’s University in Queens, New York for four years before being drafted No. 24 in the 1998 NBA draft.

Lopez’s NBA career never quite panned out. He lasted just four seasons with the Vancouver Grizzlies (now Memphis Grizzlies), Washington Wizards and Minnesota Timberwolves before venturing overseas.

march madness logo

70% Win

(110-25-1)

70% Win

(110-25-1)

70% Win

(110-25-1)

'; }); pollOptions.innerHTML = pollOptionsDom; pollCount.innerHTML = totalVotes + ' votes'; if (totalVotes > 10) { pollCount.classList.remove("hidden"); } } function trackBetsTodayPollImpression() { var intersectionObserverForArticlePoll = new IntersectionObserver( function(entries) { entries.forEach(function(entry) { var pollId = entry.target.getAttribute("data-poll-id"); if (POLLS_BY_ID[pollId]['impression_tracked']) return; if (!entry.target || !entry.isIntersecting || entry.intersectionRatio < 0.5) return; setTimeout(function() { if (isInViewport(entry.target)) { POLLS_BY_ID[pollId]['impression_tracked'] = true; var isDesktop = "1"; var gaPayload = { "question" : POLLS_BY_ID[pollId]['question'], "category": "Basketball", "page_url": window.location.href, "option1": POLLS_BY_ID[pollId]['option1'], "option2": POLLS_BY_ID[pollId]['option2'], } if (isDesktop) { gaPayload["device"] = "Desktop"; } else { gaPayload["device"] = "Mobile"; } gtag("event", "BETS_TODAY_POLL_IMPRESSION", gaPayload); intersectionObserverForArticlePoll.unobserve(entry.target); } }, 1000); }); }, { threshold: 0.5 } ); var pollElements = document.querySelectorAll('.bets-today-poll'); pollElements.forEach(function(pollElement) { var isAnswered = pollElement.querySelector(".poll-option-answered"); if (!isAnswered) { intersectionObserverForArticlePoll.observe(pollElement); } }) } return { answerPollX: answerPollX, }; }();

However, he has still done quite well for himself and has inspired many fellow immigrants looking to achieve the American dream.

According to most outlets, Felipe Lopez’s net worth is estimated to be between $1 million and $5 million. This includes the $2.6 million he earned over his NBA career as well as endorsements and his overseas earnings in Europe and the Dominican Republic. He also worked as a Spanish-language sports broadcaster.

Outside of his playing career, Lopez is most known for his effort to develop basketball in his home country. He also had an ESPN 30 for 30 documentary made about him in 2019 titled “The Dominican Dream,” which told his life story.

The documentary is described as follows:

“In the early 1990s, the future of basketball belonged to a young Dominican immigrant named Felipe Lopez. Featured on the cover of Sports Illustrated at the age of 17, Lopez's story is the ultimate profile of the American dream.”

Jonathan Hock on Felipe Lopez’s inspirational life story

Former NBA player Felipe Lopez and director and producer Jonathan Hock

Despite being considered an NBA draft bust, Felipe Lopez has still served as an inspiration to many from both the Dominican Republic and New York City. According to director and producer Jonathan Hock, who directed "The Dominican Dream," that is the most important part of Lopez's story.

During an interview in 2019, Hock spoke about how Lopez’s success as an immigrant should not be overshadowed by his brief NBA career.

“I said, you know what, if we could tell the story about Felipe Lopez as an immigrant story, not as a basketball story, well now it’s a totally different thing,” he said. “Now it’s like, ‘What does success mean?’ Today, where success is measured by dollar signs, fame, how many likes, how many followers you have or whatever, what does it mean for an immigrant to have success here? For an immigrant family to be successful? Felipe is the model of the successful immigrant.”

He added that Lopez did everything he could to achieve success upon immigrating to the U.S. and should not be considered a failure by anyone.

“Felipe never said what he was gonna become,” Hock said. “Felipe just came, worked hard and made it to the NBA after coming here at age 13 not speaking a word of English. That to me is a success story masquerading as a disappointment story. I’m hoping people will look at this and say, ‘Wow, who is going to call this a failure?’”

Quick Links

More from Sportskeeda

" modalPopup.closeOnEsc = false; modalPopup.setHeader("Why did you not like this content?"); modalPopup.setContentText(modalText); modalPopup.addCancelOkButton("Submit", resetRatingAndFeedbackForm, sendRating); modalPopup.removeCloseModalIcon(); modalPopup.disableDismissPopup(); modalPopup.open(); } else { sendRating(index); } } function sendRating() { var requestPayload = { "post_id": 1562254, "rating_value": ratingValue } if (ratingValue > 3) { requestPayload.rating_feedback_type = null; requestPayload.rating_feedback = null; } else { if (!$('input[name="drone"]:checked') || !$('input[name="drone"]:checked').value) { showErrorMessage('option'); return; } if (!$(".post-rating-feedback-note textarea") || !$(".post-rating-feedback-note textarea").value) { showErrorMessage('note'); return; } var selectedOption = $('input[name="drone"]:checked').value; var feedbackNote = $(".post-rating-feedback-note textarea").value; requestPayload.rating_feedback_type = selectedOption; requestPayload.rating_feedback = feedbackNote; } pureJSAjaxPost(addratingAPI, requestPayload, onsaveRatingSuccess, onsaveRatingFail, function() {}, true); } function resetRatingAndFeedbackForm() { var activeStars = Array.from($all('.rating span.rating-star.active')); for (var i=0; i < activeStars.length; i++) { activeStars[i].classList.remove("active"); } if ($('input[name="drone"]:checked')) { $('input[name="drone"]:checked').checked = false; } var userNote = document.querySelector(".post-rating-feedback-note textarea"); userNote.value = ''; modalPopup.close(); } function onsaveRatingSuccess() { modalPopup.close(); savePostIdInUserRatedPostsCookie(); $("#post-rating-layout").classList.add("hidden"); $("#post-rating-message").classList.remove("hidden"); window.setInterval(function showMessage() { $("#post-rating-widget").classList.add("hidden"); }, 3000); } function onsaveRatingFail() { console.error('Saving post rating failed!'); modalPopup.close(); } function savePostIdInUserRatedPostsCookie() { userRatedPostIds.push(1562254); var expiryTime = new Date(); expiryTime.setMonth(expiryTime.getMonth() + 12); // Expiry after 1 year setCookie("user_rated_post_ids", JSON.stringify(userRatedPostIds), expiryTime); } function isPostRatedByUser() { var userRatedPostIds = getCookie('user_rated_post_ids'); if (userRatedPostIds) { try { userRatedPostIds = JSON.parse(userRatedPostIds); } catch (err) { console.error(err); return false; } } else { return false; } if(userRatedPostIds.indexOf(1562254) >= 0) { return true; } else { return false; } } function getRatingCountByPostId(postId) { return new Promise(function(resolve, reject) { pureJSAjaxGet( getRatingCountBaseURL + postId + '/rating/count', function(data) { try { data = JSON.parse(data); if (data.meta_value) { resolve(data.meta_value); } reject("Failed to fetch rating count for the post:" + postId); } catch (err) { reject("Failed to fetch rating count for the post:" + postId); } }, function(err) { reject("Failed to fetch rating count for the post:" + postId); }, true); }); } function showErrorMessage(messageType) { var messageContainerId = '#' + messageType + '-error'; $(messageContainerId).classList.remove('hidden'); window.setInterval(function () { $(messageContainerId).classList.add("hidden"); }, 5000); } (function() { var callFired = false; function lazyLoadPostRating() { if (callFired) return; callFired = true; if (!isPostRatedByUser()) { getRatingCountByPostId(1562254) .then(function(ratingCount) { if (ratingCount < 10) { $("#post-rating-widget").classList.remove("hidden"); } }) .catch(function(err){ console.error(err); }); } } document.addEventListener("scroll", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("mousemove", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("touchmove", lazyLoadPostRating, { passive: true, once: true }); })();

ncG1vNJzZmivp6x7tLzOq6uso5WasaJ6wqikaJqRqLimwMGao6VnnprEtHnFnqOiqJViubC8xLNkp52kYsSwvtOhZK2Zm567qHnCpaasnaJiubC7ymadqKqdmr9uusGaZKmkka6ys3nSZp2ippGjsKqty2aqoqyllsGqu80%3D