# Bleacher Report — 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 sports news articles, live scores, and detailed game statistics from Bleacher Report across all major leagues including the NBA, NFL, MLB, and NHL. Retrieve full article content, expert analysis, and box-score data for any supported sport and date.

**Category:** Sports | **Website:** [bleacherreport.com/](https://bleacherreport.com/) | **Docs:** [parse.bot/marketplace/3deb2edf-dc6e-4c2e-a729-bb36ac6f9470/bleacherreport-com-api](https://parse.bot/marketplace/3deb2edf-dc6e-4c2e-a729-bb36ac6f9470/bleacherreport-com-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-bleacherreport-com-api-3deb2edf/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_article

Get full content and details of a specific article. Use the slug from get_news results. Returns the article title, author, publication timestamp, and body paragraphs. The published_at field may be empty if not available from upstream metadata.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Article slug from get_news results (e.g. '25435775-jose-alvarado-sends-message-wemby-after-controversial-jalen-brunson-shove-nba-finals-g3'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-bleacherreport-com-api-3deb2edf/get_article \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### get_game_stats

Get detailed game information and player statistics (box score). Use the gamecast_slug from get_scores results. Returns scoreboard, quarter-by-quarter linescore, team stat comparison, and per-player stats grouped by starters and bench for both teams.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `gamecast_slug` | string | Yes | Gamecast slug from get_scores results (e.g. 'indiana-pacers-vs-oklahoma-city-thunder-2025-6-8-18-00'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-bleacherreport-com-api-3deb2edf/get_game_stats \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"gamecast_slug":"<string>"}'
```

### get_news

Get current news articles for a specific sport. Returns article slugs and URLs that can be used with get_article to fetch full content. Each article includes an id, slug, and URL.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of articles to return. |
| `sport` | string | No | Sport slug: 'nba', 'nfl', 'mlb', 'nhl'. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-bleacherreport-com-api-3deb2edf/get_news \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","sport":"<string>"}'
```

### get_scores

Get scores and game information for a specific sport and date. Returns all games for the given date including team names, scores, status, venue, and gamecast_slug for fetching detailed stats. Defaults to today's date if omitted.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `date` | string | No | Date in YYYY-MM-DD format. Omitting defaults to today's date. |
| `sport` | string | No | Sport slug: 'nba', 'nfl', 'mlb', 'nhl'. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-bleacherreport-com-api-3deb2edf/get_scores \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"date":"<string>","sport":"<string>"}'
```
