Skip to main content

What are Reactors?

A Reactor is a serverless compute service allowing Node.js code hosted in Basis Theory to be executed against your tokens completely isolated away from your application and systems.

Reactors are invokable from any system that has the ability to make HTTPS requests and access the internet.

How It Works

Reactors are serverless function runtimes, similar to AWS Lambda, Azure Functions, or Cloudflare Workers - except your applications, systems, and infrastructure never touch the sensitive plaintext data.

Reactors Overview

Runtimes

Reactors execute within a Runtime — a secure, isolated Node.js environment. Basis Theory offers two runtime options:

  • node-bt — The default runtime with curated dependencies. Best for existing code and simple integrations.
  • node22 — Modern Node.js 22 with custom npm packages, configurable resources, and built-in permissions. Best for new projects and advanced use cases.

Learn more about Runtimes →

For deployment and continuous dependency scanning behavior, see Runtime Vulnerability Scanning.

Code Contract

Reactors use a function-based code contract that receives invocation arguments and returns a response. The contract structure differs between runtimes:

module.exports = async function (req) {
const { args, configuration, bt } = req;

// Your code here

return {
tokenize: {
sensitive_data: "will be tokenized"
},
raw: {
non_sensitive: "returned in plaintext"
}
};
};

Request Object

The reactor function receives a request object containing invocation arguments and configuration.

node-bt

AttributeTypeDescription
argsobjectArguments passed when invoking the reactor
configurationmap<string, string>Configuration values defined on the resource
btobjectPre-configured Basis Theory SDK instance for token operations
applicationOptionsobjectConfiguration information about the associated application
applicationOptions.apiKeystringThe API key of the associated application. Useful for initializing your own SDK instance or HTTP client
applicationOptions.baseUrlstringThe Basis Theory API URL for the application associated with the Reactor (e.g., https://api.basistheory.com). Useful to initialize @basis-theory/node-sdk or to make requests using an independent HTTP Client

node22

AttributeTypeDescription
reqobjectArguments passed when invoking the reactor
configurationmap<string, string>Configuration values defined on the resource
loggerobjectLogger instance with info(), warn(), error() methods
asyncRecordsobjectAvailable only during asynchronous invocation. Provides asyncRecords.write(recordId, value) for writing partial results.
applicationOptionsobjectOptions available for calling the Basis Theory API from this runtime
applicationOptions.apiKeystringScoped API key generated from runtime.permissions. This value is only available when runtime permissions are configured. Useful for initializing your own SDK instance or HTTP client
applicationOptions.baseUrlstringThe Basis Theory API base URL (e.g., https://api.basistheory.com). Useful to initialize @basis-theory/node-sdk or to make requests using an independent HTTP Client

Response Object

The reactor function must return a response object.

node-bt

The response supports two different types, giving you the flexibility to either securely tokenize sensitive outputs or return raw outputs:

AttributeTypeDescription
tokenizeobjectAny object passed will be tokenized
rawobjectAny object passed will be returned in the response

node22

The response is an object containing the HTTP response details:

AttributeTypeDefaultDescription
res.bodyobject{}Response body returned
res.headersmap<string, string>{}Custom headers to include in the response
res.statusCodenumber200HTTP status code

For a synchronous invocation, this object determines the HTTP response returned by the /react endpoint. For an asynchronous node22 invocation, the validated req or res object is returned under result when you retrieve the async result.

Creating a Reactor

Reactors are created with our Create Reactor endpoint. Once configured, a Reactor can be invoked to execute its code. Set runtime.async: true when creating a node22 Reactor that will run asynchronously.

javascript='module.exports = async function (req) {
// Do something with req.configuration.SERVICE_API_KEY

return {
raw: {
foo: "bar"
}
};
};'

curl "https://api.basistheory.com/reactors" \
-H "BT-API-KEY: <MANAGEMENT_API_KEY>" \
-H "Content-Type: application/json" \
-X "POST" \
-d '{
"name": "My First Reactor",
"code": '"$(echo $javascript | jq -Rsa .)"',
"configuration": {
"SERVICE_API_KEY": "key_abcd1234"
}
}'
We encrypt and store each configuration setting in our secure PCI Level 1 and SOC2 environment.

Invoking a Reactor

A Reactor's runtime configuration determines how it can be invoked. Synchronous Reactors use /react. Asynchronous Reactors use /react-async.

Reactors may be invoked by any private Application with reactor:invoke permission.

For node-bt reactors, the Application's token:use permission enables the Reactor to detokenize tokens provided in the request args. It is recommended that you restrict which tokens a Reactor can detokenize by only granting token:use permission on the most-specific container of tokens that is required.

For node22 reactors, use the permissions option to grant specific permissions directly to the reactor.

Synchronous Reactors

Reactors are invoked synchronously by default. See Invoke Reactors for runtime-specific request bodies, SDK examples, responses, and limitations.

Asynchronous Reactors
Enterprise

An asynchronous invocation submits work without waiting for the Reactor to finish. The response contains an asyncReactorRequestId; save it with the Reactor ID to retrieve the result later.

See the runtime-specific behavior for node-bt or node22.

See Invoke Async Reactors for request bodies, SDK examples, polling, and result contracts.


Common Use Cases

Both runtimes support the same use cases with slightly different code structures. Below are examples showing how to implement common patterns in each runtime.

Call a 3rd Party

Depending on how complex your use case is a Reactor may provide you with an excellent opportunity to mutate data before forwarding it onto a 3rd Party. In the below example, we call httpbin.org (an echo service) with the last 4 characters of our token:

const fetch = require("node-fetch");

module.exports = async function (req) {
const { customer_id } = req.args;
const last4 = customer_id.substring(-4);

const response = await fetch("https://httpbin.org/post", {
method: "POST",
body: last4,
});
const raw = await response.json();

return { raw };
};

Create a PDF Document

Creating documents out of sensitive data is a primary need for businesses today, especially in fintech where you need to create and submit 1099s for many businesses:

const fetch = require("node-fetch");
const PDFDocument = require("pdfkit");

module.exports = async function (req) {
const { token: { data } } = req.args;

let doc = new PDFDocument();
doc.fontSize(8).text(`Some token data on a pdf: ${data}`, 1, 1);
doc.end();

const response = await fetch("https://httpbin.org/post", {
method: "POST",
body: doc,
});
const raw = await response.json();

return { raw };
};

Generate a Text File and Send to an SFTP Server

Many legacy business processes still rely heavily on comma delimited files (CSV), tab delimited files or space-delimited files to transport data between companies, typically using SFTP servers as the endpoint of this data. For example, engaging with partner banks with ACH files requires you to format your file correctly and drop it on to an SFTP server.

const { Client } = require('ssh2');

module.exports = async function (req) {
const { HOST, USERNAME, PASSWORD } = req.configuration;
const data = req.args;

const conn = new Client();

await new Promise((resolve, reject) => {
conn
.on('error', (error) => reject(error))
.on('ready', () => {
conn.sftp((err, sftp) => {
const writeStream = sftp.createWriteStream('export.csv');

writeStream.on('close', () => resolve());

data.forEach((row) => {
writeStream.write(row.join(','));
writeStream.write('\n');
});

writeStream.end();
});
})
.connect({
host: HOST,
port: 22,
username: USERNAME,
password: PASSWORD,
});
}).finally(() => conn.end());

return {
raw: { status: 'ok' }
};
};

Import File from a Partner

When you need to process files of sensitive data without it touching your systems, use a Reactor to desensitize a file before forwarding it on to your systems for your own logic:

module.exports = async function (req) {
const { bt, args } = req;
const { fileString } = args; // "name,ssn\nTheory,555445555"

const rows = fileString.split("\n").map((r) => r.split(","));

await Promise.all(
rows.slice(1).map((row) => {
return bt.tokens
.create({
type: "social_security_number",
data: row[1],
})
.then((token) => (row[1] = token.id));
})
);

const desensitizedFile = rows.map((row) => row.join(",")).join("\n");

return { raw: desensitizedFile };
};

Anything You Can Imagine

When our templates and examples aren't enough, we enable you to build anything you want to with our Reactors. Start with a blank function like the one below and solve any business problem with the data you need:

module.exports = async function (req) {
const { tokens } = req.args;

// Anything you can dream up

return {
tokenize: { foo: "bar" }, // tokenize data
raw: { foo: "bar" }, // return any data
};
};

FAQ

When do I use a Reactor?

When you need to write custom code to solve complex problems - for example when manipulating data, creating documents, calling third-party APIs with sensitive data, or importing files from partners.

When would I use the Proxy instead of a Reactor?

For simple HTTP requests, the Proxy provides a simpler implementation without needing to write custom code. The Proxy can detokenize and inject sensitive data into HTTP requests automatically.

Which runtime should I choose?

If you are:

  • Starting a new project: node22 offers maximum flexibility with custom npm dependencies, configurable resources, and modern Node.js features.
  • Working with existing reactors: node-bt continues to be fully supported; consider migrating when you need node22 features.
  • Needing custom dependencies: node22 allows any npm package, while node-bt is limited to the whitelisted dependencies.

For a detailed comparison, see the Runtime comparison table.

What does the development lifecycle look like for building Reactors?

Each Reactor runs a single function which can be scoped, coded, and tested all within your normal development tooling and lifecycles. Code written and pushed to your own Github repositories can be used to create new Reactors using our Terraform Provider or API integrations.

Can I run reactor code locally to test?

Each function you write for your Reactors can be run and tested locally. This code can be treated exactly the same as the existing application code you're deploying to other infrastructure.

Can I keep my functions warm to reduce latency?

Yes. The node-bt runtime is always hot by default. For node22, you can configure warm instances using the warm_concurrency option. To request higher limits, visit Settings > Quotas in the Portal.

Is there a concept of "sandbox" Reactors?

Reactors follow the same development lifecycle as the rest of the platform, allowing you to create a new Tenant to handle any testing from your staging or development environments.

What are the IP addresses for BT?

We have the list of our public IP addresses here.

How can Reactors reduce the PCI compliance scope of my application?

Using our Reactors allows you to execute code against any PCI classified data, enabling your infrastructure to stay out of PCI compliance.