For researchers, journalists & builders
Developers & API
A free, open, read-only API over Nepal's aid and development record. CC-BY 4.0 licensed. No key required. Rate-limited fairly. Build dashboards, run analysis, or syndicate the data — just attribute it.
Endpoints
Base URL https://nepalimpact.org/api/v1. All responses are JSON with permissive CORS (Access-Control-Allow-Origin: *).
| Method | Path | Query params | Description |
|---|---|---|---|
| GET | /api/v1/stats | — | Headline counts, total committed, sources, last updated. |
| GET | /api/v1/organizations | limit, offset, sector, type, q | Paginated organization directory. |
| GET | /api/v1/organizations/{id} | — | One organization with its projects + opportunities. |
| GET | /api/v1/projects | limit, offset, sector, status, org, q | Paginated projects with budgets and timelines. |
| GET | /api/v1/projects/{id} | — | One project, full detail. |
| GET | /api/v1/opportunities | limit, offset, type, q | Open jobs, consultancies, volunteer posts. |
| GET | /api/v1/news | limit, offset, topic, source, q | Latest aggregated news articles. |
Pagination: ?limit= (default 50, max 200) and ?offset=. Bad params are clamped, not rejected. Responses carry { data, meta: { total, limit, offset } }.
Quick start
curl https://nepalimpact.org/api/v1/organizations?limit=2
curl https://nepalimpact.org/api/v1/projects?sector=health
curl https://nepalimpact.org/api/v1/stats Example response — /api/v1/organizations
Live sample, truncated to 2 records:
{
"data": [
{
"id": "org_acf",
"name": "Action against Hunger",
"type": "INGO",
"country_origin": "International",
"website": "http://www.actioncontrelafaim.org/",
"sectors": [
"Nutrition",
"Food Security",
"WASH",
"Humanitarian",
"Health"
],
"locations": [
"Nepal"
],
"verified": true,
"completeness": 100,
"iati_ref": "GB-CHC-1047501",
"source_count": 2,
"url": "https://nepalimpact.org/organizations/org_acf"
},
{
"id": "org_adb",
"name": "Asian Development Bank Nepal",
"type": "Multilateral",
"country_origin": "PH",
"website": "https://www.adb.org/countries/nepal/main",
"sectors": [
"Infrastructure",
"Energy",
"WASH",
"Agriculture",
"Economic Development"
],
"locations": [
"Nepal"
],
"verified": true,
"completeness": 100,
"iati_ref": "46004",
"source_count": 0,
"url": "https://nepalimpact.org/organizations/org_adb"
}
],
"meta": {
"total": 200,
"limit": 50,
"offset": 0,
"returned": 2
}
} Example response — /api/v1/stats
{
"data": {
"organizations": 200,
"projects": 200,
"opportunities": 0,
"open_opportunities": 0,
"verified_organizations": 200,
"news_articles": 0,
"sources": 0,
"total_committed_usd": 24806767,
"districts_touched": 0,
"last_updated": "2026-05-28T19:37:41.352Z"
}
} Attribution
Aggregated data is licensed CC-BY-4.0. You are free to share and adapt it for any purpose, including commercially, provided you credit nepalimpact.org and preserve each record's upstream source attribution. See Open Data for the full licence and data dictionary.