Marketplace
No threads yet
Live

list_travel_packages

app.roamafrica.co.za

Lists published travel packages from https://app.roamafrica.co.za for a destination country, returning all non-empty package fields including pricing, duration, inclusions/exclusions, and highlights.

Parameters2
Runs8
Updated8d ago
Operational8 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_travel_packages?

Lists published travel packages from https://app.roamafrica.co.za for a destination country, returning all non-empty package fields including pricing, duration, inclusions/exclusions, and highlights. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass country, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "country": "<string>",
  "packages": [
    {}
  ],
  "package_count": 0,
  "available_countries": [
    "<string>"
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/5d74b2fc-933b-4e3a-95f8-7caeeb28c7d7/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "5d74b2fc-933b-4e3a-95f8-7caeeb28c7d7",
    "variables": {
        "country": "South Africa",
        "timeout_seconds": 20
    }
}'

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="5d74b2fc-933b-4e3a-95f8-7caeeb28c7d7") — the "list_travel_packages" function, which lists published travel packages from https://app.roamafrica.co.za for a destination country, returning all non-empty package fields including pricing, duration, inclusions/exclusions, and highlights..

It takes country (str), timeout_seconds (int). Return the result as structured JSON.