Marketplace
No threads yet
Live

search_teams

besoccer.com

Searches https://www.besoccer.com for football teams by name. Returns each server-rendered search-index result's slug ID, name, current league, and country.

Parameters1
Runs12
Updated10d ago
Degraded12 runs · 91.6% 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 search_teams?

Searches https://www.besoccer.com for football teams by name. Returns each server-rendered search-index result's slug ID, name, current league, and country. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "query": "<string>",
  "teams": [
    {
      "name": "<string>",
      "league": "<string>",
      "country": "<string>",
      "slug_id": "<string>"
    }
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/f643c462-b016-4980-83f8-b41714a78dbc/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "f643c462-b016-4980-83f8-b41714a78dbc",
    "variables": {
        "query": "united"
    }
}'

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="f643c462-b016-4980-83f8-b41714a78dbc") — the "search_teams" function, which searches https://www.besoccer.com for football teams by name. Returns each server-rendered search-index result's slug ID, name, current league, and country..

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