Documentation Index
Fetch the complete documentation index at: https://dev.fintag.io/llms.txt
Use this file to discover all available pages before exploring further.
Get started in three steps
Step 1: Install the SDK
Step 2: Initialize the SDK
import { FintagClient } from '@fintag/js';
const fintag = new FintagClient(
apiUrl='YOUR_API_URL',
apiKey='YOUR_API_KEY'
);
Step 3: Make your first API call
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.