Marketplace
No threads yet
Live

get_team_squad

besoccer.com

Gets the current first-team squad for a BeSoccer team from https://www.besoccer.com, including each player’s position, age, nationality code, and all non-empty per-row squad fields exposed by the source.

Parameters2
Runs10
Updated8d ago
Operational10 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_team_squad?

Gets the current first-team squad for a BeSoccer team from https://www.besoccer.com, including each player’s position, age, nationality code, and all non-empty per-row squad fields exposed by the source. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass team_id, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "players": [
    {
      "age": 0,
      "rating": 0,
      "position": "<string>",
      "height_cm": 0,
      "player_url": "<string>",
      "row_fields": {},
      "player_name": "<string>",
      "squad_group": "<string>",
      "market_value": "<string>",
      "nationality_code": "<string>",
      "player_image_url": "<string>"
    }
  ],
  "team_id": "<string>",
  "team_name": "<string>",
  "page_title": "<string>",
  "source_url": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/362ee0e3-38ee-4996-aaed-745f93a78253/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "362ee0e3-38ee-4996-aaed-745f93a78253",
    "variables": {
        "team_id": "manchester-united-fc",
        "timeout_seconds": 60
    }
}'

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="362ee0e3-38ee-4996-aaed-745f93a78253") — the "get_team_squad" function, which gets the current first-team squad for a BeSoccer team from https://www.besoccer.com, including each player’s position, age, nationality code, and all non-empty per-row squad fields exposed by the source..

It takes team_id (str), timeout_seconds (int). Return the result as structured JSON.