Top Highest Paying Plasma Donation Company with First Time Bonus (2024)

'); $('.spinner-loading-overlay').show(); jQuery.ajax({ url: writeApiUrl + 'create-improvement-post/?v=1', type: "POST", contentType: 'application/json; charset=utf-8', dataType: 'json', xhrFields: { withCredentials: true }, data: JSON.stringify({ gfg_id: post_id, check: true }), success:function(result) { jQuery.ajax({ url: writeApiUrl + 'suggestions/auth/' + `${post_id}/`, type: "GET", dataType: 'json', xhrFields: { withCredentials: true }, success: function (result) { $('.spinner-loading-overlay:eq(0)').remove(); var commentArray = result; if(commentArray === null || commentArray.length === 0) { // when no reason is availaible then user will redirected directly make the improvment. // call to api create-improvement-post $('body').append('

'); $('.spinner-loading-overlay').show(); jQuery.ajax({ url: writeApiUrl + 'create-improvement-post/?v=1', type: "POST", contentType: 'application/json; charset=utf-8', dataType: 'json', xhrFields: { withCredentials: true }, data: JSON.stringify({ gfg_id: post_id, }), success:function(result) { $('.spinner-loading-overlay:eq(0)').remove(); $('.improve-modal--overlay').hide(); $('.unlocked-status--improve-modal-content').css("display","none"); $('.create-improvement-redirection-to-write').attr('href',writeUrl + 'improve-post/' + `${result.id}` + '/', '_blank'); $('.create-improvement-redirection-to-write')[0].click(); }, error:function(e) { $('.spinner-loading-overlay:eq(0)').remove(); var result = e.responseJSON; if(result.detail.non_field_errors.length){ $('.improve-modal--improve-content .improve-modal--improve-content-modified').text(`${result.detail.non_field_errors}.`); jQuery('.improve-modal--overlay').show(); jQuery('.improve-modal--improvement').show(); $('.locked-status--impove-modal').css("display","block"); $('.unlocked-status--improve-modal-content').css("display","none"); $('.improve-modal--improvement').attr("status","locked"); $('.improvement-reason-modal').hide(); } }, }); return; } var improvement_reason_html = ""; for(var comment of commentArray) { // loop creating improvement reason list markup var comment_id = comment['id']; var comment_text = comment['suggestion']; improvement_reason_html += `

${comment_text}

`; } $('.improvement-reasons_wrapper').html(improvement_reason_html); $('.improvement-bottom-btn').html("Create Improvement"); $('.improve-modal--improvement').hide(); $('.improvement-reason-modal').show(); }, error: function(e){ $('.spinner-loading-overlay:eq(0)').remove(); // stop loader when ajax failed; }, }); }, error:function(e) { $('.spinner-loading-overlay:eq(0)').remove(); var result = e.responseJSON; if(result.detail.non_field_errors.length){ $('.improve-modal--improve-content .improve-modal--improve-content-modified').text(`${result.detail.non_field_errors}.`); jQuery('.improve-modal--overlay').show(); jQuery('.improve-modal--improvement').show(); $('.locked-status--impove-modal').css("display","block"); $('.unlocked-status--improve-modal-content').css("display","none"); $('.improve-modal--improvement').attr("status","locked"); $('.improvement-reason-modal').hide(); } }, }); } else { if(loginData && !loginData.isLoggedIn) { $('.improve-modal--overlay').hide(); if ($('.header-main__wrapper').find('.header-main__signup.login-modal-btn').length) { $('.header-main__wrapper').find('.header-main__signup.login-modal-btn').click(); } return; } } }); $('.left-arrow-icon_wrapper').on('click',function(){ if($('.improve-modal--suggestion').is(":visible")) $('.improve-modal--suggestion').hide(); else{ $('.improvement-reason-modal').hide(); } $('.improve-modal--improvement').show(); }); function loadScript(src, callback) { var script = document.createElement('script'); script.src = src; script.onload = callback; document.head.appendChild(script); } function suggestionCall() { var suggest_val = $.trim($("#suggestion-section-textarea").val()); var array_String= suggest_val.split(" ") var gCaptchaToken = $("#g-recaptcha-response-suggestion-form").val(); var error_msg = false; if(suggest_val != "" && array_String.length >=4){ if(suggest_val.length <= 2000){ var payload = { "gfg_post_id" : `${post_id}`, "suggestion" : `

${suggest_val}

`, } if(!loginData || !loginData.isLoggedIn) // User is not logged in payload["g-recaptcha-token"] = gCaptchaToken jQuery.ajax({ type:'post', url: "https://apiwrite.geeksforgeeks.org/suggestions/auth/create/", xhrFields: { withCredentials: true }, crossDomain: true, contentType:'application/json', data: JSON.stringify(payload), success:function(data) { jQuery('.spinner-loading-overlay:eq(0)').remove(); jQuery('#suggestion-section-textarea').val(""); jQuery('.suggest-bottom-btn').css("display","none"); // Update the modal content const modalSection = document.querySelector('.suggestion-modal-section'); modalSection.innerHTML = `

Thank You!

Your suggestions are valuable to us.

You can now also contribute to the GeeksforGeeks community by creating improvement and help your fellow geeks.

`; }, error:function(data) { jQuery('.spinner-loading-overlay:eq(0)').remove(); jQuery('#suggestion-modal-alert').html("Something went wrong."); jQuery('#suggestion-modal-alert').show(); error_msg = true; } }); } else{ jQuery('.spinner-loading-overlay:eq(0)').remove(); jQuery('#suggestion-modal-alert').html("Minimum 5 Words and Maximum Character limit is 2000."); jQuery('#suggestion-modal-alert').show(); jQuery('#suggestion-section-textarea').focus(); error_msg = true; } } else{ jQuery('.spinner-loading-overlay:eq(0)').remove(); jQuery('#suggestion-modal-alert').html("Enter atleast four words !"); jQuery('#suggestion-modal-alert').show(); jQuery('#suggestion-section-textarea').focus(); error_msg = true; } if(error_msg){ setTimeout(() => { jQuery('#suggestion-section-textarea').focus(); jQuery('#suggestion-modal-alert').hide(); }, 3000); } } document.querySelector('.suggest-bottom-btn').addEventListener('click', function(){ jQuery('body').append('

'); jQuery('.spinner-loading-overlay').show(); if(loginData && loginData.isLoggedIn) { suggestionCall(); return; } // load the captcha script and set the token loadScript('https://www.google.com/recaptcha/api.js?render=6LdMFNUZAAAAAIuRtzg0piOT-qXCbDF-iQiUi9KY',[], function() { setGoogleRecaptcha(); }); }); $('.improvement-bottom-btn.create-improvement-btn').click(function() { //create improvement button is clicked $('body').append('

'); $('.spinner-loading-overlay').show(); // send this option via create-improvement-post api jQuery.ajax({ url: writeApiUrl + 'create-improvement-post/?v=1', type: "POST", contentType: 'application/json; charset=utf-8', dataType: 'json', xhrFields: { withCredentials: true }, data: JSON.stringify({ gfg_id: post_id }), success:function(result) { $('.spinner-loading-overlay:eq(0)').remove(); $('.improve-modal--overlay').hide(); $('.improvement-reason-modal').hide(); $('.create-improvement-redirection-to-write').attr('href',writeUrl + 'improve-post/' + `${result.id}` + '/', '_blank'); $('.create-improvement-redirection-to-write')[0].click(); }, error:function(e) { $('.spinner-loading-overlay:eq(0)').remove(); var result = e.responseJSON; if(result.detail.non_field_errors.length){ $('.improve-modal--improve-content .improve-modal--improve-content-modified').text(`${result.detail.non_field_errors}.`); jQuery('.improve-modal--overlay').show(); jQuery('.improve-modal--improvement').show(); $('.locked-status--impove-modal').css("display","block"); $('.unlocked-status--improve-modal-content').css("display","none"); $('.improve-modal--improvement').attr("status","locked"); $('.improvement-reason-modal').hide(); } }, }); });

Top Highest Paying Plasma Donation Company with First Time Bonus (2024)

FAQs

Top Highest Paying Plasma Donation Company with First Time Bonus? ›

BioLife Plasma Services is among the top payers in the plasma donation industry. New donors at BioLife can earn up to $900 in their first month through various promotions and bonuses. This high payout is broken down into specific bonuses for each of the initial donations.

Who pays the most for first-time plasma donation? ›

If you're looking to donate plasma and get a good payout, CSL Plasma and BioLife are at the top of the pay scale. CSL could net you up to $1,000 for first-time donations, while BioLife might offer up to $900 in the first month. For updated info, visit United Society Donations.

How much does Immunotek pay for first-time donors? ›

As a first-time donor, you can earn $125, $100, $100, $100, $100 on each of your first 5 donations. EARN CASH. SAVE LIVES. Plasma donors are compensated for their life-changing donation!

What is the new donor welcome bonus for CSL? ›

Our donation process makes it easy for you to help save lives. As a new donor, you can receive over $700* your first month.

How much do Grifols pay new donors? ›

Most people that meet the basic donor eligibility criteria can become a qualified donor. After each donation, your compensation will be sent to you. A qualified donor can donate plasma twice in every 7 days period at the most. You will receive up to $70 per donation.

What does Kedplasma pay new donors? ›

We need YOU to donate plasma now more than ever! New donors receive $125 on each donation, but for many the biggest reward is donating plasma that saves lives.

How much does Biolife plasma pay new donors in 2024? ›

New donors can get up to $750 in their first month donating.

Can you really make $900 donating plasma? ›

Some people can make $900 by donating plasma. This is usually only possible for first-time donors who receive new donor bonus offers or those who donate multiple times a month.

What weight do you have to be to do ImmunoTek? ›

Weigh at least 110 lbs.

What is ImmunoTek Freedom plasma? ›

Freedom Plasma is owned and operated by ImmunoTek Bio Centers. With a combined 150 years in the industry, Freedom Plasma and ImmunoTek Bio Centers are positioned to provide the best care and service to enhance the lives of our employees, donors, and patients through plasma collection.

How much will I make my first time at CSL Plasma? ›

Plasma center payments and incentives
Plasma center chainFirst donation
CSL PlasmaYou can receive up to $100 for your first donation.
BioLife Plasma ServicesYou can earn up to $800 as a new donor at select locations.
2 more rows
Feb 16, 2024

Does CSL Plasma have bonuses? ›

🎁 Get bonus rewards for every plasma donor you refer! 💪 💲 You'll receive an extra 5,000 iGive Rewards® points (worth $50) for every referred friend or family member who donates. 🙌 ➕ Plus, as a new donor, they'll get an extra 500 iGive Rewards® points.

What is the BioLife coupon for current donors? ›

BioLife Promo Codes & Coupons Pay Upto $700 Biolife Coupons & Promotions. BioLife Printable Coupons Receive $300 in 5 Donations Use Biolife plasma promo code DONOR300 to receive $50 on your first, $60 on your second, $50 on your third, and $60.

How much does Biomat pay for first time donors? ›

Biomat USA compensates you for donating your time and plasma to them. First-time users get roughly $100 for the first couple of visits, with regular, smaller payments for each donation after.

Who pays the most for plasma? ›

BioLife Plasma Services is among the top payers in the plasma donation industry. New donors at BioLife can earn up to $900 in their first month through various promotions and bonuses. This high payout is broken down into specific bonuses for each of the initial donations.

How much does Biomat pay for plasma in 2024? ›

Biomat USA's exact donor compensation varies by location, but it generally pays $150 to $300 per month for regular plasma donations. You'll earn somewhere between $40 and $75 for each donation.

How much do you get for donating plasma the first time near me? ›

You can contact a plasma center near you to get more information about payments and incentives. You can receive up to $100 for your first donation. You can earn up to $700 during your first month as a donor, through the iGive Rewards program.

How much do you get for donating plasma in Utah? ›

Valid at select locations. New donors must present the coupon prior to the initial donation. Donation fees will be paid in the following order $90, $90, $90, $100, $100, $110, $110 and $110.

What medical conditions disqualify you from donating plasma? ›

Those diagnosed with a serious or chronic illness–like high blood pressure, epilepsy, HIV/AIDS, or a primary immunodeficiency (PI)–are not eligible to donate plasma. Those who have high blood pressure would need to be tested to see what their current blood pressure is at the time of donating.

Top Articles
XAUUSD Scalping Strategy
Renting vs. Buying a Home: The 8.7% Rule in 2023
Gamevault Agent
Aadya Bazaar
Did 9Anime Rebrand
Acbl Homeport
B67 Bus Time
Southland Goldendoodles
Ucf Event Calendar
Degreeworks Sbu
6813472639
Mbta Commuter Rail Lowell Line Schedule
Michael Shaara Books In Order - Books In Order
Comics Valley In Hindi
Golden Abyss - Chapter 5 - Lunar_Angel
Project, Time & Expense Tracking Software for Business
Vegas7Games.com
Between Friends Comic Strip Today
U Of Arizona Phonebook
Air Traffic Control Coolmathgames
UMvC3 OTT: Welcome to 2013!
12 Facts About John J. McCloy: The 20th Century’s Most Powerful American?
Globle Answer March 1 2023
Meridian Owners Forum
Sams Gas Price Sanford Fl
Trinket Of Advanced Weaponry
Craigslist Efficiency For Rent Hialeah
Lilpeachbutt69 Stephanie Chavez
Skepticalpickle Leak
The Monitor Recent Obituaries: All Of The Monitor's Recent Obituaries
Craigslist Maryland Baltimore
Emily Katherine Correro
What Time Does Walmart Auto Center Open
Covalen hiring Ai Annotator - Dutch , Finnish, Japanese , Polish , Swedish in Dublin, County Dublin, Ireland | LinkedIn
Chilangos Hillsborough Nj
Louisville Volleyball Team Leaks
Viewfinder Mangabuddy
Bernie Platt, former Cherry Hill mayor and funeral home magnate, has died at 90
Pensacola Cars Craigslist
159R Bus Schedule Pdf
Insideaveritt/Myportal
Registrar Lls
Wunderground Orlando
Lake Kingdom Moon 31
Sofia Franklyn Leaks
Pain Out Maxx Kratom
Publix Store 840
How To Find Reliable Health Information Online
Tenichtop
Bunbrat
Dinargurus
Latest Posts
Article information

Author: Allyn Kozey

Last Updated:

Views: 6079

Rating: 4.2 / 5 (43 voted)

Reviews: 90% of readers found this page helpful

Author information

Name: Allyn Kozey

Birthday: 1993-12-21

Address: Suite 454 40343 Larson Union, Port Melia, TX 16164

Phone: +2456904400762

Job: Investor Administrator

Hobby: Sketching, Puzzles, Pet, Mountaineering, Skydiving, Dowsing, Sports

Introduction: My name is Allyn Kozey, I am a outstanding, colorful, adventurous, encouraging, zealous, tender, helpful person who loves writing and wants to share my knowledge and understanding with you.