Stack SDKs
The recommended way to interact with the Stack API is by using our official Node.js SDK. This fine-tuned library makes it easier and faster to work with the Stack API, providing you with the best developer experience.
Stack Node.js SDK
Installation
Install the SDK via npm:
npm install stackft
Usage
After installing the SDK, you can import and initialize it in your Node.js project:
const StackClient = require('stackft');
const client = new StackClient('your-api-key');
// Example: Fetch account details
client.getAccount()
.then(response => console.log(response))
.catch(error => console.error(error));
This library provides methods to interact with all the major endpoints of the Stack API, including managing accounts, retrieving ATM locations, checking bank routing numbers, and more.
Documentation
For full documentation on how to use the SDK, please refer to the Stack Node.js SDK documentation.