Marketplace
No threads yet
Live

list_destination_countries

app.roamafrica.co.za

Lists destination countries available on https://app.roamafrica.co.za, combining published tours and travel packages. Returns tour, package, and total counts for each country.

Parameters0
Runs10
Updated10d ago
Operational10 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 list_destination_countries?

Lists destination countries available on https://app.roamafrica.co.za, combining published tours and travel packages. Returns tour, package, and total counts for each country. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — call it with no parameters and get the result back without maintaining a scraper.

Response

{
  "destinations": [
    {
      "country": "<string>",
      "total_count": 0,
      "tours_count": 0,
      "packages_count": 0,
      "source_country_labels": [
        "<string>"
      ]
    }
  ],
  "destination_count": 0,
  "tour_record_count": 0,
  "package_record_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/da46916f-1e4f-4674-96bc-437d33fe4ff2/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "da46916f-1e4f-4674-96bc-437d33fe4ff2",
    "variables": {}
}'

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="da46916f-1e4f-4674-96bc-437d33fe4ff2") — the "list_destination_countries" function, which lists destination countries available on https://app.roamafrica.co.za, combining published tours and travel packages. Returns tour, package, and total counts for each country..

It takes no parameters. Return the result as structured JSON.