FASTER. BETTER. SMARTER.
Make it possible
with TRITIUM®
Grow your business with payments processing platform built for the digital age. TRITIUM evolves with your needs, offering an unmatched combination of flexibility, performance, and resiliency.
Payments technology
for modern markets
E6’s modern payments processing platform can power exceptional solutions that meet your business needs. TRITIUM enables a wide range of use cases across cards, credit, installments, virtual accounts, wallets and rewards.
Everything in real time
Update product details like interest rates, fees, and risk controls in minutes. No matter what you need, our globally distributed platform is ready to help you launch winning propositions whenever and wherever you need us.
Build a global-ready
payments solution
TRITIUM®, offers real-time RESTful API processing, powers thousands of transactions of per second, and has market-leading compliance, security, and reliability with over 99.99% uptime and 24/7 support.
We work with banks and brands to
create exceptional payments products
Modern payment infrastructure
Any use case you can imagine. One global platform
TRITIUM® offers a full suite of payments experiences with an unmatched combination of flexibility and performance,
so you can get to market quickly, and make program updates instantly thanks to our API-first open platform architecture.
CaaS
Deliver Cards-as-a-Service capabilities to your commercial clients with our realtime card issuance capabilities. Issue any card type, anywhere, at any time.
Corporate cards
Build a corporate card offering that supports even the most complex business structures, with robust card controls, rewards, and features to drive market share growth and usage.
Consumer credit
Incorporate installments into any customer experience, with the ability to offer loans before, during, or after a purchase.
Business installments
Offer installment loans to businesses at any point in the transaction journey, right from your existing banking portal.
Virtual accounts
Instantly open an unlimited number of accounts in any currency with our modern platform banking infrastructure, and easily attach financial services that drive revenue.
Digital wallets
Digital wallets enable convenient and secure cashless payment options. Set up and run your own real-time payments programs, and easily allow your clients to accept, hold, or send any value unit.
HOW WE MAKE IT POSSIBLE
Truly superior
payment technology
Single code base
The foundation of our flexibility. Every use case starts with our easy to configure, hyper-flexible base ledger. Build your product on a powerful foundation supported by ongoing enhancements and features.
IONIC® framework
The key to our configurability. Enjoy unparalleled ability to add new features, localize your product, or adapt to new regulations quickly with little to no disruption to your service with our payment processing software.
IONIC® plugins
The power behind the possibility. Add, override, or extend existing behaviors with simple plugins, so you launch with exactly what you want and can quickly adapt in the future.
Cloud platform
The building block of our performance. TRITIUM® is a cloud-based and robust API solution that offers tailored payment products with scalability, resiliency, and security.
See real-time insights
Move your business forward and keep pace with constantly changing consumer and market trends. Our proprietary data and reporting technology provide instant access to your data.
Scale up to meet any challenge
Add products, capabilities, and capacity to meet your needs and maintain your market-leading position.
Build the next big thing in payments
Put the power of TRITIUM® to work for you, and quickly configure and launch a product your customers will love. Our modern payment platform and technology will simplify your paytech stack and help you lower costs, while offering a configurable foundation to build any payment product you want to take to market.
require "episode6"
E6.api_key = "..."
E6::Charge.create(
:amount => 2000,
:currency => "eur",
:source => "tok_mastercard", # obtained with E6.js
:description => "Charge for madison.wilson@example.co"
)
import e6
E6.api_key = "..."
E6.Charge.create(
amount=2000,
currency="eur",
source="tok_amex", # obtained with E6.js
description="Charge for john.jordan@example.com"
)
var e6 = require("episode6")(
"..."
);
e6.charges.create({
amount: 2000,
currency: "eur",
source: "tok_visa", // obtained with Episode6.js
description: "Charge for james.ryann@example.com"
}, function(err, charge) {
// asynchronously called
});
e6.Key = "..."
chargeParams := &e6.ChargeParams{
Amount: 2000,
Currency: "eur",
Desc: "Charge for benjamin.wilson@example.com",
}
// obtained with E6.js
chargeParams.SetSource("tok_mastercard")
ch, err := charge.New(chargeParams)