Marketplace
No threads yet
Live

get_travel_guide_by_slug

app.roamafrica.co.za

Retrieves one travel guide from https://app.roamafrica.co.za by slug, including full Markdown content and all non-empty metadata fields returned by the source.

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 get_travel_guide_by_slug?

Retrieves one travel guide from https://app.roamafrica.co.za by slug, including full Markdown content and all non-empty metadata fields returned by the source. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass slug, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "guide": {},
  "source_url": "<string>",
  "requested_slug": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/2a5ab166-034c-4574-82f5-a315feca17e8/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "2a5ab166-034c-4574-82f5-a315feca17e8",
    "variables": {
        "slug": "south-africa-budget-travel-guide",
        "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="2a5ab166-034c-4574-82f5-a315feca17e8") — the "get_travel_guide_by_slug" function, which retrieves one travel guide from https://app.roamafrica.co.za by slug, including full Markdown content and all non-empty metadata fields returned by the source..

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