# Lion Strategy — 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 curated case studies and essays from Lion Strategy to learn independent strategy insights and transaction advisory perspectives tailored for executives, boards, and investors. Browse their complete library or dive into specific resources to inform your business decisions and strategic planning.

**Category:** Business Directories | **Website:** [lionstrategy.com/](https://lionstrategy.com/) | **Docs:** [parse.bot/marketplace/8d71cd16-ac29-46e7-b411-a50b0e38940c/lionstrategy-com-api](https://parse.bot/marketplace/8d71cd16-ac29-46e7-b411-a50b0e38940c/lionstrategy-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-lionstrategy-com-api-8d71cd16/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_case_study

Get full details of a specific case study including the challenge, work performed, and result. The slug is produced by list_case_studies.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Case study slug from list_case_studies (e.g. 'case-study-consumer-goods-growth-strategy'). |

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

### get_essay

Get the full content of a specific essay by its slug. Returns metadata (topic, read time, publish date) and the full essay body organised by sections. The slug is produced by list_essays.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Essay slug from list_essays (e.g. 'essay-the-new-interchange'). |

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

### list_case_studies

List all case studies from Lion Strategy's engagement record. Returns 12 anonymised case studies covering corporate strategy, transactions and capital commitments. Optionally filter by decision type or sector. Returns all items in a single response (no pagination needed).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `decision` | string | No | Filter by decision type. Omitting returns all case studies. |
| `sector` | string | No | Filter by sector. Omitting returns all case studies. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-lionstrategy-com-api-8d71cd16/list_case_studies \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"decision":"<string>","sector":"<string>"}'
```

### list_essays

List all essays from Lion Strategy's Thinking section. Returns essays on AI, judgement, trust and the economics of abundant intelligence. All items returned in a single response (no pagination needed).

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-lionstrategy-com-api-8d71cd16/list_essays \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
