# Hard Rock Bet — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Access live Puerto Rico Superior Nacional (BSN) basketball betting lines from Hard Rock Bet, including current matchups, spreads, moneylines, and totals to inform your wagering decisions. Track upcoming games and real-time odds to find the best betting opportunities across BSN competitions.

**Category:** Sports | **Website:** [www.hardrock.bet/](https://www.hardrock.bet/) | **Docs:** [parse.bot/marketplace/0923af77-6b37-4cd7-a324-f6adddf34d8d/hardrock-bet-api](https://parse.bot/marketplace/0923af77-6b37-4cd7-a324-f6adddf34d8d/hardrock-bet-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-hardrock-bet-api-0923af77/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_bsn_matchups

Returns all currently available BSN (Puerto Rico Superior Nacional) basketball games with team names, scheduled game time, and which betting markets are offered. Results are ordered by start time ascending.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-hardrock-bet-api-0923af77/get_bsn_matchups \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_bsn_odds

Returns the primary spread (line + juice), moneyline, and totals (over/under line + juice) for a given BSN game. The primary line is the most balanced line offered by the sportsbook. Odds are in American format.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `game_id` | string | Yes | Unique game identifier from the get_bsn_matchups endpoint (e.g. from games[*].game_id). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-hardrock-bet-api-0923af77/get_bsn_odds \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"game_id":"<string>"}'
```
