Marketplace
No threads yet
Live

get_repmax_article_by_slug

repmaxmedia.com

Gets one full RepMax Media article from https://repmaxmedia.com by slug. Returns JSON-LD metadata, reading and view details, full body text, inline images, and article links.

Parameters1
Runs9
Updated10d ago
Operational9 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_repmax_article_by_slug?

Gets one full RepMax Media article from https://repmaxmedia.com by slug. Returns JSON-LD metadata, reading and view details, full body text, inline images, and 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

{
  "url": "<string>",
  "slug": "<string>",
  "title": "<string>",
  "authors": [
    "<string>"
  ],
  "category": "<string>",
  "language": "<string>",
  "body_text": "<string>",
  "body_links": [
    {
      "url": "<string>",
      "text": "<string>"
    }
  ],
  "image_urls": [
    "<string>"
  ],
  "view_count": 0,
  "word_count": 0,
  "description": "<string>",
  "date_modified": "<string>",
  "date_published": "<string>",
  "publisher_name": "<string>",
  "body_image_urls": [
    "<string>"
  ],
  "main_entity_url": "<string>",
  "reading_minutes": 0,
  "published_relative": "<string>",
  "publisher_logo_url": "<string>",
  "is_accessible_for_free": true
}

Call it

curl --location 'https://us-prod.notte.cc/functions/db1f3770-2449-4500-8551-e3917d1189e0/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "db1f3770-2449-4500-8551-e3917d1189e0",
    "variables": {
        "slug": "run-your-own-race-inside-the-qb-camp-where-jordan-love-and-steve-calhoun-are-bui"
    }
}'

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="db1f3770-2449-4500-8551-e3917d1189e0") — the "get_repmax_article_by_slug" function, which gets one full RepMax Media article from https://repmaxmedia.com by slug. Returns JSON-LD metadata, reading and view details, full body text, inline images, and article links..

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