Overview

Charity Search lets you look up verified US non-profit organizations by name, EIN, or keyword. Use it to add donation features or vet charities programmatically.

Beginner Tip

Start with a simple name search using the searchTerm query parameter. The free tier returns up to 10 results per request.

Available Data

The kind of data this API exposes, based on its documentation. We could not call the endpoint to confirm the exact field names.

Use case: Integrate non-profit charity data data into web and mobile applications
Charity Search data via REST API

Example Response

Illustrative shape only — we were not able to call this endpoint (it requires credentials or exposes no public sample URL), so the fields below show the kind of data this API returns rather than a recorded response.

JSON Response · Illustrative
{
  "status": "success",
  "data": {
    "result": "Data from Charity Search",
    "description": "Non-profit charity data",
    "timestamp": "2025-01-15T10:00:00Z"
  }
}

Field Reference

ein Employer Identification Number — the unique tax ID for each non-profit in the US.
name The registered legal name of the charity.
city City where the non-profit is headquartered.
state Two-letter US state abbreviation.
category NTEE category code describing the organization mission area.
deductible Whether donations to this organization are tax-deductible.

Implementation Example

Calls a real endpoint of this API. Replace any placeholder credentials with your own key.

Request
const url = "http://charityapi.orghunter.com/";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
  headers: {
  "X-API-Key": "YOUR_API_KEY"
  }
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data);

What Can You Build?

Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.

Common Errors & Troubleshooting

Generated guidance based on this API's documentation, not observed by us. Treat it as a starting point and check against the provider's own error reference.

401 Unauthorized Missing or invalid API key in the request
Add your key as a query parameter: ?apiKey=YOUR_KEY or in the Authorization header as documented.
Empty results array The search term is too specific or includes typos
Try a shorter, broader keyword (e.g. "cancer" instead of "american cancer society foundation").
429 Too Many Requests Exceeded the rate limit for your plan tier
Add a small delay between requests and cache results you fetch frequently.

Metadata Score Breakdown

Estimated from metadata — endpoint not independently tested

This score is estimated from observable metadata — HTTPS support, authentication model, declared CORS, and documentation reachability — because the API requires authentication or exposes no publicly testable endpoint. The five-signal breakdown is only shown for live-tested APIs.

Metadata estimate · endpoint not independently tested

Technical Specifications

Auth API Key
HTTPS NO
CORS UNKNOWN
Category Business
Difficulty Intermediate
Listing details not endpoint-verified

Similar APIs

View All →