DataScoop.io
Get a free key
Datasets / Charity Commission register
Charities & non-profitsLiveOpen Government Licence v3.0

Charity Commission register data

The register's own export stops at 10,000 rows, while the full download is shaped for a database rather than Excel. Filter the England and Wales register by income, area, type or activity instead, and download every matching charity as one CSV.

Preview it free. Your list for £4.99.

Loading live dataset...

Status Registered ▾
Minimum income £1,000,000 ▾
Postcode area Any ▾
charities-england-wales.csv
Source: Charity Commission for England and Wales, Open Government Licence v3.0. Preview 25 rows free; buy this filtered export or use Pro for every matching row.

Or pull it straight into your code or your agent

cURLJavaScriptPythonMCP (Claude, ChatGPT, Cursor)
# Every registered charity with income over GBP 1m in Leeds postcodes, as CSV
curl "https://datascoop.io/v1/datasets/charity-commission/query?\
  status=Registered&minIncome=1000000&postcodeArea=LS&format=csv" \
  -H "Authorization: Bearer ds_your_key"
// # Every registered charity with income over GBP 1m in Leeds postcodes, as CSV
const res = await fetch("https://datascoop.io/v1/datasets/charity-commission/query?status=Registered&minIncome=1000000&postcodeArea=LS", {
  headers: { Authorization: "Bearer ds_your_key" }
});
const { rows, total, attribution } = await res.json();
# # Every registered charity with income over GBP 1m in Leeds postcodes, as CSV
import requests
r = requests.get("https://datascoop.io/v1/datasets/charity-commission/query",
                 params={"status":"Registered","minIncome":"1000000","postcodeArea":"LS"},
                 headers={"Authorization": "Bearer ds_your_key"})
rows = r.json()["rows"]
# Claude Code (one line; other clients on /agents)
claude mcp add --transport http datascoop https://datascoop.io/mcp \
  --header "Authorization: Bearer ds_your_key"

# Your agent then calls
query_dataset({ dataset: "charity-commission", filters: {"status":"Registered","minIncome":"1000000","postcodeArea":"LS"} })

Everything you need on every row

Organisational fields only. No personal contact lists.

charity numbernametypestatusregistered onlatest incomelatest expenditurefinancial year endcontact addresspostcodewebsitecompany numberactivities
The deal

Preview it free. Pay only when you download.

Preview any slice free. When the rows are right, your spreadsheet-ready file is £4.99, no account needed. Need it every week, or for your app or agent? Pro gives you unlimited files, the full API and MCP.

£0
Preview
£4.99
Per export
£19/mo
Pro · unlimited
Filter & download

Source & licence

Charity Commission for England and Wales register extract, reused under the Open Government Licence v3.0. Organisational data only: trustee names and the register's contact email and phone are never included. DataScoop is independent and not affiliated with or endorsed by the Charity Commission. How we build and refresh this dataset →

Building something? Get a free API key.

Query the current DataScoop import of charity register data from your app or AI agent in one call. Account creation happens on a private page where analytics is disabled. Upgrade to Pro whenever you need unlimited files and full API and MCP access. Connect Claude, ChatGPT or Cursor.