Live
list_news_articles
openai.comReturns official OpenAI news articles from https://openai.com with title, description, URL, category, GUID, and publication date, with optional category and keyword filters.
Parameters3
Runs3
Updated1h ago
Operational3 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_news_articles?
Returns official OpenAI news articles from https://openai.com with title, description, URL, category, GUID, and publication date, with optional category and keyword filters. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass category, query, limit and get the result back without maintaining a scraper.
Response
{
"count": 0,
"articles": [
{
"url": "<string>",
"guid": "<string>",
"title": "<string>",
"category": "<string>",
"description": "<string>",
"publication_date": "<string>"
}
],
"total_matching": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/9d50ff10-f437-404f-9ce2-1a6fd18014ec/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "9d50ff10-f437-404f-9ce2-1a6fd18014ec",
"variables": {
"category": "",
"query": "",
"limit": 20
}
}'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="9d50ff10-f437-404f-9ce2-1a6fd18014ec") — the "list_news_articles" function, which returns official OpenAI news articles from https://openai.com with title, description, URL, category, GUID, and publication date, with optional category and keyword filters.. It takes category (str), query (str), limit (int). Return the result as structured JSON.