Quick Start
Get your API keys
Your API requests are authenticated using API keys. Any request that doesn't include an API key will return an error.
You can generate an API key from your Cashfin Business Dashboard at any time.
How to Generate API Keys:
Log into your Cashfin Business Dashboard
Navigate to Settings → API Management
Click "Generate New API Key"
Copy and securely store your API key - it won't be shown again
Using Your API Keys:
Include your API key in the Authorization header of every request:
curl -X GET "https://api.cashfin.africa/accounts" \
-H "Authorization: YOUR_API_KEY" \
-H "Content-Type: application/json"const headers = {
'Authorization': 'YOUR_API_KEY',
'Content-Type': 'application/json'
};headers = {
'Authorization': 'YOUR_API_KEY',
'Content-Type': 'application/json'
}Last updated