Fast, free, global payments at scale.
"With Tremendous, our participants are always happy with several reward options, regardless of their location, and we're happy that creating, sending, and auditing our rewards is so fast and easy."
"We view Tremendous as an extension of our Customer Success team, providing our mutual customers with a best-in-class experience from onboarding and beyond."
"Previously, we purchased gift cards in bulk and the process to send codes to the advocates was very manual. With Tremendous, it's automated and requires a lot less maintenance!"
"Before Tremendous, I bought gift cards from individual retailers and tracked everything in Excel. It became a convoluted mess. Now I have a central location where I buy and track everything."
"Another thing that we like about Tremendous is the ability to send gift cards via text message. We didn't have this option with our old gift card provider. We have been using emails only, but now we are building a feature that will allow our panelists to get the gift cards through text messages."
"With Tremendous we have been able to provide support to hundreds of essential workers across the nation in a cost-effective manner."
"The variety of rewards to choose from, including the option to donate the reward value, is a great way to make sure our participants are getting the type of reward they care about. It's a small detail, but goes a long way in showing our members that we care."
"Sending research incentives through Tremendous has saved us at least 50 hours/month across everyone that conducts customer research."
"The impact that I see Tremendous having on the research incentive process is best-in-class in terms of centralization, standardization, and optimization.I only wish there were other tools that could have the same impact on other parts of the research process!"
"With Tremendous, our participants are always happy with several reward options, regardless of their location, and we're happy that creating, sending, and auditing our rewards is so fast and easy."
"We view Tremendous as an extension of our Customer Success team, providing our mutual customers with a best-in-class experience from onboarding and beyond."
"Previously, we purchased gift cards in bulk and the process to send codes to the advocates was very manual. With Tremendous, it's automated and requires a lot less maintenance!"
"Before Tremendous, I bought gift cards from individual retailers and tracked everything in Excel. It became a convoluted mess. Now I have a central location where I buy and track everything."
"Another thing that we like about Tremendous is the ability to send gift cards via text message. We didn't have this option with our old gift card provider. We have been using emails only, but now we are building a feature that will allow our panelists to get the gift cards through text messages."
"With Tremendous we have been able to provide support to hundreds of essential workers across the nation in a cost-effective manner."
"The variety of rewards to choose from, including the option to donate the reward value, is a great way to make sure our participants are getting the type of reward they care about. It's a small detail, but goes a long way in showing our members that we care."
"Sending research incentives through Tremendous has saved us at least 50 hours/month across everyone that conducts customer research."
"The impact that I see Tremendous having on the research incentive process is best-in-class in terms of centralization, standardization, and optimization.I only wish there were other tools that could have the same impact on other parts of the research process!"
We offer over 1,000 choices for redeeming a payout.You get to choose what options they see.
$35
No fee to offer virtual cards that work just about anywhere. Plastic available in the US too.
Global Visa® and Mastercard® in multiple currencies. Physical Visa® cards to mail individually or in bulk.
Learn more
$50
Provide gift card rewards from 900+ global retailers.
Select or exclude specific brands from our extensive catalog, or allow recipients to choose any gift card that meets their needs.
Learn more
Send cash to recipients at scale in more than 80 countries.
Deposit cash directly via ACH and Venmo in the US, or distribute cash internationally with PayPal.
Learn more
$25
Support to the world's top charitable organizations.
Recipients convert the dollar value of their payout into a charitable donation — selecting from your pre-approved list of charities.
Learn more
No strings attached. Almost as fun as getting real money.
Whether it’s dozens or millions, you can easily send rewards in bulk — by spreadsheet upload, out-of-the-box integrations and the Tremendous API.
Our platform makes customer support, tax compliance and fraud prevention a breeze. We can even collect your W-9s.
Expand your program's reach with offerings for over 200 countries. No need to know where your recipients are, Tremendous automatically presents relevant options.
from tremendous import Tremendous
env = "https://www.tremendous.com"
client = Tremendous("[ACCESS_TOKEN]", env)
client.create_order({
"funding_source_id": "[FUNDING_SOURCE_ID]",
"rewards": [
{
"amount": 40,
"message": "Thank you for participating in our study!",
"recipient": {
"email": "[email protected]",
"name": "Mary Smith"
}
}
]
})
require 'tremendous'
Tremendous.configure do |config|
config[:access_token] = '[ACCESS_TOKEN]'
config[:base_api_uri] = 'https://www.tremendous.com/api/v1/'
end
funding_source_id = Tremendous::FundingSource.list.first.id
order = Tremendous::Order.create!(
funding_source_id,
[{
"amount": 40,
"message": "Thank you for participating in our study!",
"recipient": {
"email": "[email protected]",
"name": "Mary Smith"
}
}]
)
var Tremendous = require('tremendous');
var client = new Tremendous(
"[ACCESS_TOKEN]",
"https://www.tremendous.com"
);
client.createOrder({
"funding_source_id": "[FUNDING_SOURCE_ID]",
"rewards": [
{
"amount": 40,
"message": "Thank you for participating in our study!",
"recipient": {
"email": "[email protected]",
"name": "Mary Smith"
}
}
]
}, function(err, results) {});
Request a demo and our team will be happy to walk you through the platform, or get started now for free and create your first order in minutes.