Live
list_blog_posts
grindr.comLists public Grindr blog posts from https://grindr.com with page-based browsing and an optional exact category filter. Returns post summaries in the site's newest-first order.
Parameters2
Runs10
Updated10d ago
Operational10 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_blog_posts?
Lists public Grindr blog posts from https://grindr.com with page-based browsing and an optional exact category filter. Returns post summaries in the site's newest-first order. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass page, category and get the result back without maintaining a scraper.
Response
{
"page": 0,
"posts": [
{}
],
"category": "<string>",
"has_more": true,
"post_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/0a477411-33cd-4c63-9d7d-b68855dd0817/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "0a477411-33cd-4c63-9d7d-b68855dd0817",
"variables": {
"page": 1,
"category": ""
}
}'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="0a477411-33cd-4c63-9d7d-b68855dd0817") — the "list_blog_posts" function, which lists public Grindr blog posts from https://grindr.com with page-based browsing and an optional exact category filter. Returns post summaries in the site's newest-first order.. It takes page (int), category (str). Return the result as structured JSON.