# Revenue Growth Guide — 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.

> Search and discover proven B2B growth experiments from the Revenue Growth Guide library to find strategies tailored to your business needs. Access detailed experiment information, FAQs, and related experiments to accelerate your revenue growth initiatives.

**Category:** Business Directories | **Website:** [www.revenuegrowthguide.com/](https://www.revenuegrowthguide.com/) | **Docs:** [parse.bot/marketplace/2a494fd2-6180-4c9b-96fd-ee0221f506a4/revenuegrowthguide-com-api](https://parse.bot/marketplace/2a494fd2-6180-4c9b-96fd-ee0221f506a4/revenuegrowthguide-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-revenuegrowthguide-com-api-2a494fd2/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_experiment_detail

Get full experiment details by page_slug, including FAQs, related experiments, meta description, and category information. Use page_slug values from search_experiments results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page_slug` | string | Yes | The page_slug identifier for the experiment (from search_experiments results, e.g. 'homepage-hero-ab-test-video-copy-and-cta-variants'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-revenuegrowthguide-com-api-2a494fd2/get_experiment_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page_slug":"<string>"}'
```

### search_experiments

Search experiments by category with optional text query filtering. Returns experiment listings with title, description, tags, and time-to-implement. Text query filters results by matching against title, description, and tags.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Category to filter experiments. Accepts exactly one of: website, digital_ads, content, social_media, events, sponsorships, email, pr_influencers. |
| `query` | string | No | Text search query to filter experiments within the category. Matches against title, description, and tags (case-insensitive). Omitted returns all experiments in category. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-revenuegrowthguide-com-api-2a494fd2/search_experiments \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","query":"<string>"}'
```
