Integrate FinAItics into your applications with our powerful RESTful API. Build custom dashboards, automate workflows, and access real-time financial data.
Get up and running with the FinAItics API in minutes
Generate your API key from the dashboard settings
Use our SDK or make HTTP requests to our endpoints
Create powerful financial applications and workflows
Complete reference for all available endpoints
/api/v1/cashflow/forecastGet cash flow forecast data for a specified time period
start_dateend_dategranularity/api/v1/metrics/summaryGet key financial metrics and KPIs
period/api/v1/integrations/syncTrigger a manual sync for connected integrations
integration_idforce/api/v1/alertsList active alerts and notifications
statustypeOfficial SDKs and community libraries for popular programming languages
Official JavaScript SDK for browser and Node.js environments
npm install finaitics-sdkconst FinAItics = require('finaitics-sdk');
const client = new FinAItics({
apiKey: 'your-api-key',
environment: 'production' // or 'sandbox'
});
const forecast = await client.cashflow.getForecast({
startDate: '2024-01-01',
endDate: '2024-03-31'
});Official Python SDK with async/await support
pip install finaitics-pythonimport finaitics
client = finaitics.Client(
api_key='your-api-key',
environment='production'
)
forecast = client.cashflow.get_forecast(
start_date='2024-01-01',
end_date='2024-03-31'
)Direct HTTP requests using cURL
Available on all systemscurl -X GET 'https://api.finaitics.com/v1/cashflow/forecast' -H 'Authorization: Bearer your-api-key' -H 'Content-Type: application/json' -d '{
"start_date": "2024-01-01",
"end_date": "2024-03-31"
}'Secure API access using Bearer token authentication
All API requests must include your API key in the Authorization header as a Bearer token.
Authorization: Bearer your-api-key-here
Content-Type: application/jsonAPI usage limits and testing environments
Rate limit headers are included in all responses to help you track usage.
api.finaitics.comLive data and real integrations
sandbox-api.finaitics.comTest data for development
Our developer support team is here to help you integrate successfully.
Response time: 24 hours • Available Mon-Fri 9am-5pm PST