For researchers, journalists & builders
Developers & API
A free, read-only API over Nepal's impact-sector record. No key required. Every listing carries source evidence.Build dashboards, run analysis, or syndicate metadata while respecting each upstream source's terms.
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, source, location, category, q | Open jobs and tenders with source, deadline, procuring entity, and reference evidence. |
| 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/opportunities?type=tender&source=bolpatra
curl https://nepalimpact.org/api/v1/statsExample 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"
],
"ownership_verified": false,
"source_verified": true,
"completeness": 100,
"iati_ref": "GB-CHC-1047501",
"source_count": 21,
"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"
],
"ownership_verified": false,
"source_verified": true,
"completeness": 100,
"iati_ref": "46004",
"source_count": 0,
"url": "https://nepalimpact.org/organizations/org_adb"
}
],
"meta": {
"total": 1000,
"limit": 50,
"offset": 0,
"returned": 2
}
}Example response — /api/v1/stats
{
"data": {
"organizations": 1000,
"projects": 3282,
"opportunities": 0,
"open_opportunities": 0,
"verified_organizations": 0,
"news_articles": 0,
"sources": 0,
"total_committed_usd": 15436017853,
"districts_touched": 0,
"last_updated": "2026-08-27T00:40:10.231Z"
}
}Attribution
CC BY 4.0 for Nepal Impact-authored metadata; upstream terms apply. Listing content remains subject to each named upstream source's terms. Preserve source evidence and see Open Data for the full mixed-rights statement.