list_bsn_games
hardrock.betReturns all currently available Puerto Rico Superior Nacional (BSN) basketball games from https://www.hardrock.bet, including teams, scheduled start times, offered market categories, and other non-empty event details.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_bsn_games?
Returns all currently available Puerto Rico Superior Nacional (BSN) basketball games from https://www.hardrock.bet, including teams, scheduled start times, offered market categories, and other non-empty event details. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass max_games, state and get the result back without maintaining a scraper.
Response
{
"count": 0,
"games": [
{
"sport": "<string>",
"team_a": "<string>",
"team_b": "<string>",
"game_id": "<string>",
"is_live": true,
"event_name": "<string>",
"is_outright": true,
"market_count": 0,
"market_names": [
"<string>"
],
"competition_id": "<string>",
"scheduled_time": "<string>",
"markets_offered": [
"<string>"
],
"competition_name": "<string>"
}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/21d4de50-ff71-4966-a3ee-9ad007eafa30/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "21d4de50-ff71-4966-a3ee-9ad007eafa30",
"variables": {
"max_games": 100,
"state": "fl"
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="21d4de50-ff71-4966-a3ee-9ad007eafa30") — the "list_bsn_games" function, which returns all currently available Puerto Rico Superior Nacional (BSN) basketball games from https://www.hardrock.bet, including teams, scheduled start times, offered market categories, and other non-empty event details.. It takes max_games (int), state (str). Return the result as structured JSON.