Marketplace
No threads yet
Live

get_bsn_game_odds

hardrock.bet

Returns the primary spread, moneyline, and total with American odds for a selected Puerto Rico Superior Nacional (BSN) basketball game from https://www.hardrock.bet. With no arguments, it uses the earliest currently offered BSN game.

Parameters3
Runs13
Updated10d ago
Failing13 runs · 38.4% 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_bsn_game_odds?

Returns the primary spread, moneyline, and total with American odds for a selected Puerto Rico Superior Nacional (BSN) basketball game from https://www.hardrock.bet. With no arguments, it uses the earliest currently offered BSN game. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass game_id, game, state and get the result back without maintaining a scraper.

Response

{
  "sport": "<string>",
  "total": {
    "state": "<string>",
    "market_id": "<string>",
    "selections": [
      {
        "line": "<string>",
        "side": "<string>",
        "juice": "<string>",
        "selection_id": "<string>"
      }
    ],
    "market_name": "<string>",
    "market_type": "<string>",
    "source_line": 0,
    "display_order": 0,
    "most_balanced": true
  },
  "spread": {
    "state": "<string>",
    "market_id": "<string>",
    "selections": [
      {
        "line": "<string>",
        "team": "<string>",
        "juice": "<string>",
        "selection_id": "<string>"
      }
    ],
    "market_name": "<string>",
    "market_type": "<string>",
    "source_line": 0,
    "display_order": 0,
    "most_balanced": true
  },
  "team_a": "<string>",
  "team_b": "<string>",
  "game_id": "<string>",
  "is_live": true,
  "moneyline": {
    "state": "<string>",
    "market_id": "<string>",
    "selections": [
      {
        "odds": "<string>",
        "team": "<string>",
        "selection_id": "<string>"
      }
    ],
    "market_name": "<string>",
    "market_type": "<string>",
    "display_order": 0
  },
  "event_name": "<string>",
  "market_count": 0,
  "competition_id": "<string>",
  "scheduled_time": "<string>",
  "competition_name": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/13b84601-0376-48de-b794-8db155113894/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "13b84601-0376-48de-b794-8db155113894",
    "variables": {
        "game_id": "",
        "game": "",
        "state": "fl"
    }
}'

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="13b84601-0376-48de-b794-8db155113894") — the "get_bsn_game_odds" function, which returns the primary spread, moneyline, and total with American odds for a selected Puerto Rico Superior Nacional (BSN) basketball game from https://www.hardrock.bet. With no arguments, it uses the earliest currently offered BSN game..

It takes game_id (str), game (str), state (str). Return the result as structured JSON.