Marketplace
No threads yet
Live

get_article

redlandshospital.org

Returns a Redlands Community Hospital news or blog article with full text and record metadata from https://www.redlandshospital.org.

Parameters1
Runs4
Updated1d ago
Operational4 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_article?

Returns a Redlands Community Hospital news or blog article with full text and record metadata from https://www.redlandshospital.org. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass slug and get the result back without maintaining a scraper.

Response

{
  "url": "<string>",
  "slug": "<string>",
  "title": "<string>",
  "author": "<string>",
  "excerpt": "<string>",
  "category": "<string>",
  "image_url": "<string>",
  "modified_date": "<string>",
  "publication_date": "<string>",
  "full_article_text": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/f7375cb8-7bc1-4b6b-9aea-8f805486b23b/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "f7375cb8-7bc1-4b6b-9aea-8f805486b23b",
    "variables": {
        "slug": ""
    }
}'

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="f7375cb8-7bc1-4b6b-9aea-8f805486b23b") — the "get_article" function, which returns a Redlands Community Hospital news or blog article with full text and record metadata from https://www.redlandshospital.org..

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