get_article_details
hsprepsports.comRetrieves full article details by slug from https://hsprepsports.com, including body text and HTML content, metadata, author, section, publication timestamps, and keywords. Returns all non-empty article fields exposed by the source response.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_article_details?
Retrieves full article details by slug from https://hsprepsports.com, including body text and HTML content, metadata, author, section, publication timestamps, and keywords. Returns all non-empty article fields exposed by the source response. 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
{
"slug": "<string>",
"title": "<string>",
"author": "<string>",
"source": "<string>",
"section": "<string>",
"keywords": [
"<string>"
],
"metadata": {},
"body_html": "<string>",
"body_text": "<string>",
"article_id": "<string>",
"author_bio": "<string>",
"article_url": "<string>",
"description": "<string>",
"modified_at": "<string>",
"published_at": "<string>",
"relative_age": "<string>",
"canonical_url": "<string>",
"metadata_tags": [
{
"key": "<string>",
"value": "<string>"
}
],
"hero_image_alt": "<string>",
"hero_image_url": "<string>",
"breadcrumb_items": [
{
"item": "<string>",
"name": "<string>",
"position": 0
}
],
"schema_news_article": {},
"estimated_read_time_minutes": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/3a424e91-f5ae-459a-8926-940c2604a686/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "3a424e91-f5ae-459a-8926-940c2604a686",
"variables": {
"slug": "flag-football-national-championship-preview",
"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.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="3a424e91-f5ae-459a-8926-940c2604a686") — the "get_article_details" function, which retrieves full article details by slug from https://hsprepsports.com, including body text and HTML content, metadata, author, section, publication timestamps, and keywords. Returns all non-empty article fields exposed by the source response.. It takes slug (str), timeout_seconds (int). Return the result as structured JSON.