Marketplace
No threads yet
Live

search_players

ogol.com.br

Searches football player listings on https://www.ogol.com.br by name and returns popularity-ranked profiles with IDs, positions, nationalities, and all available card details.

Parameters3
Runs10
Updated3d ago
Degraded10 runs · 90% 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_players?

Searches football player listings on https://www.ogol.com.br by name and returns popularity-ranked profiles with IDs, positions, nationalities, and all available card details. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, limit, page and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "count": 0,
  "order": "<string>",
  "query": "<string>",
  "results": [
    {
      "details": {},
      "player_id": 0,
      "positions": [
        "<string>"
      ],
      "player_name": "<string>",
      "nationalities": [
        "<string>"
      ],
      "position_codes": [
        "<string>"
      ],
      "popularity_rank": 0
    }
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/a2fa38b3-1b92-4ecc-a6b0-ff741ff1a13f/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "a2fa38b3-1b92-4ecc-a6b0-ff741ff1a13f",
    "variables": {
        "query": "Marta",
        "limit": 10,
        "page": 1
    }
}'

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="a2fa38b3-1b92-4ecc-a6b0-ff741ff1a13f") — the "search_players" function, which searches football player listings on https://www.ogol.com.br by name and returns popularity-ranked profiles with IDs, positions, nationalities, and all available card details..

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