Marketplace
No threads yet
Live

get_blog_post

grindr.com

Retrieves one full public Grindr blog article from https://grindr.com by URL slug. Returns its metadata, author details, hero image, excerpt, and complete article body text.

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

Retrieves one full public Grindr blog article from https://grindr.com by URL slug. Returns its metadata, author details, hero image, excerpt, and complete article body text. 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": [
    {}
  ],
  "excerpt": "<string>",
  "category": "<string>",
  "body_text": "<string>",
  "publication_date": "<string>",
  "thumbnail_image_url": "<string>",
  "reading_time_minutes": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/4e171944-e390-4f56-a778-8139b109776a/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "4e171944-e390-4f56-a778-8139b109776a",
    "variables": {
        "slug": "gregg-araki-wants-you-to-have-more-sex"
    }
}'

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="4e171944-e390-4f56-a778-8139b109776a") — the "get_blog_post" function, which retrieves one full public Grindr blog article from https://grindr.com by URL slug. Returns its metadata, author details, hero image, excerpt, and complete article body text..

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