# Mckinsey — 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 titles, author names, publication dates, and complete text content from McKinsey.com articles in seconds. Access comprehensive article information to integrate McKinsey insights into your research, content curation, or analysis workflows.

**Category:** News & Media | **Website:** [www.mckinsey.com/institute-for-economic-mobility/our-insights/the-great-ownership-transfer-a-new-era-of-business-stewardship](https://www.mckinsey.com/institute-for-economic-mobility/our-insights/the-great-ownership-transfer-a-new-era-of-business-stewardship) | **Docs:** [parse.bot/marketplace/7b523492-057b-4872-966a-762dcadad1b8/mckinsey-com-api](https://parse.bot/marketplace/7b523492-057b-4872-966a-762dcadad1b8/mckinsey-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-mckinsey-com-api-7b523492/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_article

Fetches a McKinsey article and returns its title, list of authors, publish date, full body text, and URLs of chart/figure/exhibit images embedded in the article. Accepts a full URL or path to any McKinsey article page. The body text is extracted from the embedded page data with HTML tags stripped. Exhibit images are extracted from the article's structured exhibit and image components (desktop versions); logos, icons, and avatars are excluded.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Full McKinsey article URL (e.g. https://www.mckinsey.com/institute-for-economic-mobility/our-insights/the-great-ownership-transfer-a-new-era-of-business-stewardship) or just the path portion starting with /. |

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

### list_insights_store_articles

Lists the articles, insights, publications, and news items featured on the McKinsey Insights Store page. Returns each item's title and full URL. Excludes navigation, footer, social, legal, pagination, and promotional links. The page content is curated and changes periodically.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mckinsey-com-api-7b523492/list_insights_store_articles \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
