Getting Started with FinFusion
Beta Release
FinFusion is currently in beta. API endpoints and responses may change.
Introduction
FinFusion provides a powerful API for integrating financial services into your applications. This guide will help you get started with our SDK and make your first API request.
Installation
npm install @finfusion/sdk
Quick Start
Authentication
First, initialize the SDK with your API key:
init.ts
import { FinFusion } from '@finfusion/sdk';
const finfusion = new FinFusion({
apiKey: 'your_api_key',
environment: 'sandbox' // or 'production'
});
Making Requests
Try out your first API request:
API Playground
Create a test payment
- Endpoint
- /v1/payments POST
- Headers
- Required
- Parameters
- Amount in cents Type: numberThree-letter currency code Type: string
- Response
-
// Response will appear here