Charity & Nonprofit Rating Scraper avatar

Charity & Nonprofit Rating Scraper

Pricing

from $5.00 / 1,000 results

Go to Apify Store
Charity & Nonprofit Rating Scraper

Charity & Nonprofit Rating Scraper

Scrape Charity Navigator for nonprofit ratings, financial scores, and accountability metrics. Search by keyword, browse by category, or look up charities by EIN. Returns star ratings, revenue, mission, and more.

Pricing

from $5.00 / 1,000 results

Rating

0.0

(0)

Developer

lulz bot

lulz bot

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

Categories

Share

Charity Navigator Scraper

Scrape nonprofit ratings, financial scores, and accountability data from Charity Navigator — the largest nonprofit evaluator in the United States.

What You Get

  • Star ratings (0-4) and numeric score (0-100%)
  • Financial metrics: total revenue, expenses, program/admin/fundraising ratios
  • Accountability and transparency scores
  • Mission statement and website
  • Location, cause categories, staff/leadership info
  • Organization size and IRS NTEE classification

Scrape Modes

1. Search (default)

Find charities by keyword across all 1.8 million nonprofits in Charity Navigator's database.

Input:

{
"mode": "search",
"searchQuery": "animal rescue",
"limit": 20
}

2. Details

Get the complete profile for a specific charity by EIN (Employer Identification Number).

Input:

{
"mode": "details",
"ein": "131624100"
}

3. Category Browse

Browse charities by cause area. Common categories include: Animals, Education, Health, Human Services, Arts, Environment, Religion, International.

Input:

{
"mode": "category",
"category": "Animals",
"limit": 50
}

Output Fields

FieldDescription
nameCharity name
einEmployer Identification Number
urlCharity Navigator profile URL
city, stateLocation
location"City, State" combined
starRatingStar rating (0-4)
ratingNumeric score (0-100)
ratingScoreFormatted score ("91%")
categoryNTEE category (e.g., "Arts, Culture and Humanities")
causeAreaPrimary cause (e.g., "Art museums")
causesAll cause tags
missionOrganization mission statement (details mode)
websiteCharity's website (details mode)
totalRevenueMost recent total revenue in USD (details mode)
totalExpensesTotal functional expenses in USD (details mode)
programExpensesProgram service expenses in USD (details mode)
programExpenseRatio% of expenses on programs (details mode)
adminExpenseRatio% of expenses on management (details mode)
fundraisingExpenseRatio% of expenses on fundraising (details mode)
totalAssetsTotal assets in USD (details mode)
netAssetsNet assets/fund balance (details mode)
employeeCountNumber of employees (details mode)
sizeRevenue size tier (SMALL/MEDIUM/LARGE/SUPER)
isProfileCompleteWhether the charity has a complete Beacon profile
beaconsCompletedNumber of Beacon sections completed (0-4)
leadershipStaffTop staff names, titles, and compensation (details mode)
scrapedAtISO timestamp of scrape

Technical Notes

  • Data source: Charity Navigator embeds all search and profile data as JSON in the page's Next.js RSC (React Server Component) payload — no JavaScript execution required
  • Rate limiting: 1.5s delay between requests, no aggressive bot protection on the site
  • Pagination: Search and category modes paginate automatically (10 results per page)
  • Proxies: Optional — the site has light protection (analytics only), but proxies help for large runs

Example Output (Search Mode)

{
"name": "National Center for Construction Education Research",
"ein": "541779583",
"url": "https://www.charitynavigator.org/ein/541779583",
"city": "ALACHUA",
"state": "FL",
"location": "ALACHUA, FL",
"rating": 91,
"ratingScore": "91%",
"starRating": 4,
"causeArea": "Education",
"causes": ["Education", "Job training", "Job creation and workforce development"],
"size": "LARGE",
"subsection": "501(c)(03)",
"isProfileComplete": true,
"scrapedAt": "2026-04-22T00:00:00.000Z"
}

Example Output (Details Mode)

{
"name": "The Museum of Modern Art",
"ein": "131624100",
"url": "https://www.charitynavigator.org/ein/131624100",
"category": "Arts, Culture and Humanities",
"causeArea": "Art Museums",
"city": "New York",
"state": "NY",
"location": "New York, NY",
"address": "11 West 53rd Street",
"starRating": 4,
"ratingScore": "97%",
"mission": "Founded in 1929 as an educational institution...",
"website": "https://www.moma.org",
"totalRevenue": 236680721,
"totalExpenses": 280669509,
"programExpenses": 207327987,
"programExpenseRatio": "73.87%",
"adminExpenseRatio": "21.61%",
"fundraisingExpenseRatio": "4.52%",
"totalAssets": 2490307043,
"employeeCount": 1045,
"scrapedAt": "2026-04-22T00:00:00.000Z"
}