# Momentumlabs — 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.

> Momentumlabs provides 2 callable API endpoints through the Parse marketplace.

**Category:** Business Directories | **Website:** [momentumlabs.so/](https://momentumlabs.so/) | **Docs:** [parse.bot/marketplace/9cac45e0-9df5-4e9b-b20b-268608314c63/momentumlabs-so-api](https://parse.bot/marketplace/9cac45e0-9df5-4e9b-b20b-268608314c63/momentumlabs-so-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-momentumlabs-so-api-9cac45e0/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_homepage_copy

Extract structured homepage content including headline, services offered, ideal client profile, engagement models, tone/voice analysis, and key statistics from the Momentum Labs homepage. Returns a comprehensive breakdown of the company's marketing copy and positioning.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-momentumlabs-so-api-9cac45e0/get_homepage_copy \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_page_content

Extract all text content (headings, paragraphs, list items, navigation links, meta information) from any page on the Momentum Labs website. Useful for analyzing copy on specific pages like the approach, how it works, or engagements pages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `path` | string | No | URL path to scrape, relative to the site root (e.g. '/', '/approach', '/how-it-works'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-momentumlabs-so-api-9cac45e0/get_page_content \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"path":"<string>"}'
```
