Marketplace
No threads yet
Live

list_team_news_articles

kooora.com

Returns up to 30 newest team-specific football articles from https://kooora.com with metadata, images, authors, URLs, and display tags after Arabic or English name lookup.

Parameters2
Runs7
Updated3d ago
Operational7 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 list_team_news_articles?

Returns up to 30 newest team-specific football articles from https://kooora.com with metadata, images, authors, URLs, and display tags after Arabic or English name lookup. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass team_name, limit and get the result back without maintaining a scraper.

Response

{
  "team": {},
  "count": 0,
  "query": "<string>",
  "articles": [
    {}
  ],
  "source_url": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/f016469d-b005-4fa3-b30d-2853b9de9074/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "f016469d-b005-4fa3-b30d-2853b9de9074",
    "variables": {
        "team_name": "Real Madrid",
        "limit": 30
    }
}'

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="f016469d-b005-4fa3-b30d-2853b9de9074") — the "list_team_news_articles" function, which returns up to 30 newest team-specific football articles from https://kooora.com with metadata, images, authors, URLs, and display tags after Arabic or English name lookup..

It takes team_name (str), limit (int). Return the result as structured JSON.