Why Purification Matters
Here's something many new halal investors miss: a stock can be Shariah-compliant and still generate impure income. Screening determines whether a company is permissible to invest in, but it doesn't mean every dollar the company earns is pure.
Even well-run, compliant companies typically earn some interest on their corporate bank accounts, money-market positions, or short-term investments. This income — while small — flows through to shareholders as part of dividends and capital appreciation.
Dividend purification is the process of calculating and donating the impure portion of your dividend income to charity. It's not optional — the major Shariah advisory boards and all five screening methodologies require it as a condition of permissibility.
How the Impure Income Ratio Is Calculated
The purification rate is derived from the company's financial statements:
Purification Rate = (Impure Income / Total Revenue) × 100
Where impure income includes:
- Interest income from bank deposits and money-market instruments
- Income from non-compliant business activities (if any, within the 5% tolerance)
- Returns from interest-bearing securities or bonds held by the company
Worked Example
Let's calculate the purification rate for a hypothetical company:
| Revenue Source | Amount | Status |
|---|---|---|
| Product sales | $95,000,000,000 | Halal |
| Service revenue | $4,500,000,000 | Halal |
| Interest income | $420,000,000 | Impure |
| Other income | $80,000,000 | Halal |
Total revenue: $100,000,000,000
Impure income: $420,000,000
Purification rate: $420M / $100B = 0.42%
If you received $1,000 in dividends from this company, you'd donate $4.20 to charity as purification.
Purification and zakat are separate obligations. Zakat is 2.5% of your total wealth above nisab, paid annually. Purification is the impure portion of dividends, donated as they're received. You cannot count purification donations toward your zakat obligation — they serve different purposes. Also note: purification donations are given without the intention of reward (thawab) since you're disposing of impure wealth, not giving sadaqah.
Purification for Capital Gains
This is a debated topic among scholars. Some hold that purification applies only to dividends, since capital gains represent the market's valuation of the company rather than direct distribution of income. Others argue that a portion of capital gains is also attributable to impure income that inflated the stock price.
The majority practical position, followed by most screening providers and Islamic funds, is to apply purification to dividends. If you want to take the more cautious approach, apply the same purification rate to your realized capital gains as well.
Purification for ETFs
ETF purification is more complex because the fund holds many companies, each with its own impure income ratio. The approach:
- Identify the purification rate for each holding in the ETF
- Weight each rate by the holding's proportion of the fund
- Sum the weighted rates to get the fund-level purification rate
This is computationally intensive for ETFs with hundreds of holdings. The Halal Terminal API does this automatically for 8,000+ ETFs via the /api/etf/{symbol}/screening endpoint.
How to Automate Purification Tracking
Use the Halal Terminal API to get purification data for any stock:
curl https://api.halalterminal.com/api/dividends/AAPL/purification \
-H "X-API-Key: YOUR_KEY"
The response includes the company's impure income ratio, the purification rate, dividend history, and the exact purification amount per dividend payment:
{
"symbol": "AAPL",
"purification_rate": 0.42,
"impure_income_ratio": 0.0042,
"recent_dividends": [
{
"date": "2026-02-14",
"amount": 0.25,
"purification_amount": 0.00105
}
]
}
Screen any stock or ETF
Choose Your Tool
Use the interactive terminal to screen visually, or integrate the API into your own applications and workflows.
Where to Donate Purification Amounts
Purification donations should go to charitable causes, but scholars differ on whether they qualify as sadaqah (voluntary charity) or are simply disposal of impure wealth:
- Majority view: Donate to any charitable cause — the poor, education, healthcare, community services. The intention is to cleanse your wealth, not to earn reward
- Some scholars: Recommend donating specifically to the poor and needy, similar to zakat recipients
- Practical note: Many Muslim investors donate purification amounts to general charity and track them separately from their zakat and sadaqah
Practical Tips for Tracking Purification
- Keep a spreadsheet or use an app to log each dividend payment and the corresponding purification amount
- Purify quarterly rather than per-dividend if you hold many positions — batch your donations for convenience
- Re-check purification rates annually when companies publish new financial statements, as the impure income ratio can change year to year
- For ETFs, use the fund-level purification rate rather than trying to calculate per-holding
Summary
Dividend purification is a straightforward but often overlooked obligation for halal investors. The impure portion of your dividends — typically less than 1-5% — must be donated to charity. The calculation is simple: multiply your dividend by the company's purification rate. For portfolio-level tracking and ETF purification, the Halal Terminal API handles the complexity automatically.