Marketplace
No threads yet
Live

get_displacement_summary

api.worldmonitor.app

Returns global refugee and displacement totals, country-level statistics, and origin-to-asylum flows from https://worldmonitor.app.

Parameters3
Runs6
Updated3d ago
Operational6 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_displacement_summary?

Returns global refugee and displacement totals, country-level statistics, and origin-to-asylum flows from https://worldmonitor.app. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass year, country_limit, flow_limit and get the result back without maintaining a scraper.

Response

{
  "year": 0,
  "flows": [
    {}
  ],
  "countries": [
    {}
  ],
  "fetched_at": 0,
  "global_totals": {},
  "data_available": true
}

Call it

curl --location 'https://us-prod.notte.cc/functions/feeb7c09-6731-458a-bc02-5102896675bc/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "feeb7c09-6731-458a-bc02-5102896675bc",
    "variables": {
        "year": 0,
        "country_limit": 0,
        "flow_limit": 50
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="feeb7c09-6731-458a-bc02-5102896675bc") — the "get_displacement_summary" function, which returns global refugee and displacement totals, country-level statistics, and origin-to-asylum flows from https://worldmonitor.app..

It takes year (int), country_limit (int), flow_limit (int). Return the result as structured JSON.