Skip to main content

Get started in three steps

Step 1: Install the SDK

npm install @fintag/js

Step 2: Initialize the SDK

JavaScript
import { FintagClient } from '@fintag/js';

const fintag = new FintagClient(
  apiUrl='YOUR_API_URL',
  apiKey='YOUR_API_KEY'
);

Step 3: Make your first API call

JavaScript
const response = await fintag.verify("your-parameter");
console.log(response);
You’re now ready to start building with FinTag! For installation details and contribution setup, head over to the Usage section.