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.
FinTag provides official SDKs for various programming languages. Choose the one that best fits your stack.
JavaScript/TypeScript
Python
Rust
Go
Swift
Node.js Requirements:
- Node.js version 19 or higher
- Works with TypeScript out of the box (type definitions included).
Install the SDK
To install the FinTag SDK, use one of the following package managers:Import the SDK
You can import the FinTag SDK in your JavaScript or TypeScript project as follows:import { FintagClient } from '@fintag/js';
const fintag = new FintagClient({
apiUrl: 'YOUR_API_URL',
apiKey: 'YOUR_API_KEY',
});
Prerequisites:
- Python version 3.8 or higher
Install the SDK
To install the FinTag SDK, use pip:Import the SDK
You can import the FinTag SDK in your Python project as follows:from fintag import FintagClient
fintag = FinTagClient(
api_url='YOUR_API_URL',
api_key='YOUR_API_KEY',
)
Prerequisites:
- Rust version 1.60 or higher
Install the SDK
To install the FinTag SDK, use Cargo:Import the SDK
You can import the FinTag SDK in your Rust project as follows:use fintag_rust::FintagClient;
let fintag = FintagClient::new(
api_url: "YOUR_API_URL",
api_key: "YOUR_API_KEY",
);
Prerequisites:
- Go version 1.18 or higher
Install the SDK
To install the FinTag SDK, use go get:go get github.com/fintag-io/fintag-go
Import the SDK
You can import the FinTag SDK in your Go project as follows:import (
"github.com/fintag-io/fintag-go"
)
var fintag = fintag.NewClient(
fintag.WithAPIURL("YOUR_API_URL"),
fintag.WithAPIKey("YOUR_API_KEY"),
)
Prerequisites:
- Swift version 5.5 or higher
Install the SDK
To install the FinTag SDK, use Swift Package Manager:swift package add @fintag-io/fintag-swift
Import the SDK
You can import the FinTag SDK in your Swift project as follows:import FinTag
let fintag = FinTagClient(
apiURL: "YOUR_API_URL",
apiKey: "YOUR_API_KEY"
)
Next Steps
After installing and initializing the SDK, you can start using it to interact with the FinTag API.