Marketplace
No threads yet
Live

get_blog_post_by_slug

ariasurf.com

Fetches one complete blog post from https://ariasurf.com by URL slug, including metadata, author, publication date, tags, thumbnail, full Markdown and rendered HTML content, and related article links.

Parameters1
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 get_blog_post_by_slug?

Fetches one complete blog post from https://ariasurf.com by URL slug, including metadata, author, publication date, tags, thumbnail, full Markdown and rendered HTML content, and related article links. 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

{
  "post": {
    "url": "<string>",
    "slug": "<string>",
    "tags": [
      "<string>"
    ],
    "title": "<string>",
    "author": {
      "url": "<string>",
      "name": "<string>",
      "type": "<string>"
    },
    "description": "<string>",
    "content_html": "<string>",
    "related_posts": [
      {
        "url": "<string>",
        "slug": "<string>",
        "title": "<string>"
      }
    ],
    "thumbnail_image": "<string>",
    "content_markdown": "<string>",
    "publication_date": "<string>",
    "reading_time_minutes": 0
  }
}

Call it

curl --location 'https://us-prod.notte.cc/functions/d1fa32da-2a30-45c6-bb5e-4a5d0fa70e6e/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "d1fa32da-2a30-45c6-bb5e-4a5d0fa70e6e",
    "variables": {
        "slug": "how-tides-affect-surf"
    }
}'

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="d1fa32da-2a30-45c6-bb5e-4a5d0fa70e6e") — the "get_blog_post_by_slug" function, which fetches one complete blog post from https://ariasurf.com by URL slug, including metadata, author, publication date, tags, thumbnail, full Markdown and rendered HTML content, and related article links..

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