Fast, free, global payments at scale.
"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."
We offer hundreds of 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 700+ 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 most countries and regions. 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.