# Boston Consulting Group — 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.

> Retrieve article content from BCG.com publications including titles, authors, publish dates, body text, and embedded images to access their latest insights and research. Get direct access to complete articles with all their components organized in a single request.

**Category:** News & Media | **Website:** [www.bcg.com/publications/2026/digital-infrastructure-playbook](https://www.bcg.com/publications/2026/digital-infrastructure-playbook) | **Docs:** [parse.bot/marketplace/5f8676dd-537b-4a65-a43d-9ef846269449/bcg-com-api](https://parse.bot/marketplace/5f8676dd-537b-4a65-a43d-9ef846269449/bcg-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-bcg-com-api-5f8676dd/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_article

Retrieves a BCG publication article by its URL slug. Returns the article title, list of authors, publish date, full body text, and URLs of embedded chart/figure/exhibit images (excluding logos, icons, and avatars). The slug is the path portion after /publications/ in the article URL.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Article slug path after /publications/ in the BCG URL (e.g. '2026/digital-infrastructure-playbook'). |

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