Impactpool Jobs Scraper — UN & NGO Careers avatar

Impactpool Jobs Scraper — UN & NGO Careers

Pricing

from $4.50 / 1,000 job results

Go to Apify Store
Impactpool Jobs Scraper — UN & NGO Careers

Impactpool Jobs Scraper — UN & NGO Careers

Scrape UN, NGO and international-development jobs from Impactpool.org — the impact-sector careers board (UN agencies, world bank, INGOs, EU institutions). Get title, organisation, duty station and apply URL, plus optional application deadline and full description. Delta mode powers job-alert bots.

Pricing

from $4.50 / 1,000 job results

Rating

0.0

(0)

Developer

Nomad.Dev

Nomad.Dev

Maintained by Community

Actor stats

0

Bookmarked

6

Total users

4

Monthly active users

8 days ago

Last modified

Categories

Share

Fetch mission-driven vacancies from Impactpool.org — an NGO jobs board covering UN agencies, world bank / development bank roles, INGOs, EU institutions and social-impact / international-development careers.

What Impactpool data does this scraper extract?

Each result is one flat JSON record per job posting:

FieldMeaning
idStable source-side identifier (ImpactPool job ID)
titleJob title as posted
companyHiring organisation
locationDuty station / location (defaults to "Worldwide" when the card doesn't list one)
senioritySeniority level as shown on the card (e.g. "Senior - Senior level")
urlDirect link to the posting
snippetOrganisation — location — seniority, joined as a short summary line
postedAtPosting date — always null (ImpactPool publishes none; kept for schema parity)
deadlineApplication/closing date (ISO YYYY-MM-DD when parseable) — requires includeDetails
descriptionFull job description text, HTML-stripped — requires includeDetails
organizationUrlHiring organisation's ImpactPool profile page — requires includeDetails
organizationIdImpactPool's internal organisation id — requires includeDetails
sourceAlways "impactpool"

The last five fields are null on a fast listing-only run. Turn on Include full details (includeDetails) to fetch each returned posting's detail page and fill in the application deadline, the full description, and the hiring organisation's profile URL/id. Enrichment is bounded to the postings you actually receive (after filters and maxItems), and if any single detail page fails the posting is still returned with its listing fields. ImpactPool publishes no posting date anywhere, so postedAt is always null.

How to scrape Impactpool with this Actor

  1. Click Try for free / Run — no login to the target site, no cookies, no proxies to configure.
  2. Adjust the input (keyword, filters, maxItems) or keep the defaults.
  3. Run it and export the dataset as JSON, CSV or Excel, or read it over the API.

Run it from your own code:

from apify_client import ApifyClient
client = ApifyClient("<YOUR_APIFY_TOKEN>")
run = client.actor("nomad-agent/impactpool-scraper").call(run_input={"maxItems": 50})
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item["title"], "—", item["company"], item["url"])

Or a single HTTP call that runs the Actor and returns items in one response:

curl -X POST \
"https://api.apify.com/v2/acts/nomad-agent~impactpool-scraper/run-sync-get-dataset-items?token=<YOUR_APIFY_TOKEN>" \
-H "Content-Type: application/json" \
-d '{"maxItems": 50}'

Input

FieldTypeDefaultNotes
keywordstring""Free-text search to bias results toward specific roles, sectors or topics (e.g. "policy", "programme manager", "migration", "consultant"). Leave empty to return the latest global feed.
locationFilterstring""Only keep postings whose location/duty station text contains this (case-insensitive). Applied after fetching, on top of the keyword search. Leave empty to keep all locations.
maxItemsinteger40Maximum number of openings to return, across as many pages as it takes; billed per result returned. Set 0 to keep every posting the search returns (bounded by an internal safety cap on pages fetched).
includeDetailsbooleanfalseFetch each returned posting's detail page to add deadline, full description, and organizationUrl/organizationId. Adds one extra request per returned job; cost is bounded to the postings you actually receive. Fails open per posting.
onlyNewSinceLastRunbooleanfalseDelta / monitoring mode: return only postings not already delivered by a previous run of this Actor. Already-seen jobs are dropped before they're fetched or billed — ideal for scheduled job-alert bots.
resetSeenJobsbooleanfalseClear the remembered set of already-seen jobs before this run (every current posting counts as new). Only meaningful with onlyNewSinceLastRun.
cacheTtlSecondsinteger1800(Advanced) Reuse the last fetched page for this many seconds instead of contacting ImpactPool again, so quick repeat runs are faster and cheaper. Set 0 to always fetch a fresh page.

Output example

With includeDetails enabled:

{
"id": "1223429",
"title": "Head of Office / Local Representative - KfW Office in Antananarivo (Madagascar)",
"company": "KfW Banque de Développement",
"location": "Antananarivo",
"seniority": "Senior Executive - Senior Executive level",
"url": "https://www.impactpool.org/jobs/1223429",
"snippet": "KfW Banque de Développement — Antananarivo — Senior Executive - Senior Executive level",
"postedAt": null,
"deadline": "2026-07-17",
"description": "Since 1948, KfW has been committed to improving economic, social, and environmental living conditions worldwide...",
"organizationUrl": "https://www.impactpool.org/organizations/36051/kfw-entwicklungsbank",
"organizationId": "36051",
"source": "impactpool"
}

On a listing-only run (includeDetails off), deadline, description, organizationUrl and organizationId are null.

Pricing

Pay per event: $0.005 per Actor start and $0.007 per job returned. 100 jobs ≈ $0.705. No subscription, no rental — you pay only for what you fetch.

Integrations

Export the dataset as JSON, CSV or Excel from the Console, pull it over the Apify API (including run-sync-get-dataset-items for a single blocking call), wire it into Make/Zapier/n8n, or drive it from an AI agent via the Apify MCP server.

Use cases

  • Impact-sector job boards and alert bots
  • Career coaching for international-development careers
  • Fellowship and JPO tracking
  • Diversity of duty-station analysis

FAQ

Is it legal to scrape Impactpool? This Actor reads only publicly available job postings — data any visitor can see without logging in. No personal data behind authentication is touched. Review the target site's terms and your local regulations for your specific use case.

Do I need an account on the target site? No. Postings are fetched from public pages/APIs — no login, cookies or session tokens.

How fresh is the data? Every run fetches live listings. Results are cached for cacheTtlSeconds (default 30 min, set 0 to always hit the source live).

Can I get only new jobs on a schedule? Yes. Turn on onlyNewSinceLastRun and schedule the Actor: each run returns only postings it hasn't delivered before, so a job-alert bot pays only for genuinely new openings. Use resetSeenJobs once to start the history fresh.

How many jobs can I get? This Actor pages through ImpactPool's search results (roughly 40 postings per page) until it has maxItems postings or the listing runs out. maxItems trims the result count if you want fewer; locationFilter narrows further.

Something broken or missing? Open an issue on the Actor's Issues tab — it is monitored and reliability fixes ship fast.

Is this Actor useful to you? A quick ⭐ review on the Actor's Reviews tab helps other humanitarian and NGO job seekers find it — and tells us what to build next.

All siblings share the same flat record shape and a delta mode built for job-alert bots — no other UN/NGO-sector scraper on Apify offers an incremental mode:


From the maker of Oink — an open-source, AI-powered job-search bot for Telegram that runs on these Actors. Try the free bot, get a managed instance at oinkjobsearch.com, or browse the full catalog of 50+ Actors.