Integration Quick Start
Get started with Financbase integrations in minutes
Step 1: Get Your API Key
Step 2: Make Your First API Call
Test your API key with a simple request to verify your connection.
curl https://api.financbase.com/v1/accounts \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"Expected Response:
{"data": [...], "status": "success"}Step 3: Set Up Webhooks (Optional)
Webhooks allow Financbase to notify your application in real-time when events occur. This is essential for building reactive integrations.
- Create a webhook endpoint in your application
- Configure the webhook URL in Financbase dashboard
- Subscribe to the events you want to receive
- Verify webhook signatures for security
Next Steps
Now that you've made your first API call, explore these resources to build your integration: