API

African Financial Data
for Developers

Tax rates, forex, fuel prices, and interest rates for 54 African countries. RESTful JSON API with 99.9% uptime.

View Documentation Get Free API Key

Four APIs, One Platform

Everything you need to build African fintech applications.

💰

AfroTax

PAYE, VAT, and corporate tax calculations for 54 African countries. Always up to date with latest tax laws.

/api/v1/tax/paye
💱

AfroFX

Real-time and historical exchange rates for all African currencies. Updated every 15 minutes.

/api/v1/fx/rates

AfroFuel

Current fuel prices across African countries. Petrol, diesel, and kerosene with historical data.

/api/v1/fuel/prices
🏢

AfroRates

Central bank interest rates, inflation data, and monetary policy rates across Africa.

/api/v1/rates/central-bank

Simple to Integrate

Start making API calls in under a minute.

# Get Nigeria PAYE tax breakdown
curl -X GET "https://api.afrotools.com/v1/tax/paye?country=NG&salary=500000" \
  -H "Authorization: Bearer YOUR_API_KEY"
// Get Nigeria PAYE tax breakdown
const response = await fetch(
  'https://api.afrotools.com/v1/tax/paye?country=NG&salary=500000',
  {
    headers: {
      'Authorization': 'Bearer YOUR_API_KEY'
    }
  }
);
const data = await response.json();
console.log(data.tax_breakdown);
# Get Nigeria PAYE tax breakdown
import requests

response = requests.get(
    "https://api.afrotools.com/v1/tax/paye",
    params={"country": "NG", "salary": "500000"},
    headers={"Authorization": "Bearer YOUR_API_KEY"}
)
data = response.json()
print(data["tax_breakdown"])

Get Started in 3 Steps

1

Create an account

Sign up at AfroTools and navigate to the API section in your dashboard.

2

Get your API key

Generate an API key from your dashboard. Free tier includes 100 calls/day.

3

Start building

Use our RESTful JSON endpoints to integrate African financial data into your app.

Ready to Build?

Start with 100 free API calls per day. No credit card required.

Get Your API Key