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

> Track construction market trends and project activity across the US and Canada by accessing national and state-level reports, industry events, and economic insights. Stay informed on the construction industry with blog content, upcoming trade shows, and real-time visibility into active project volumes.

**Category:** Business Directories | **Website:** [constructconnect.com/](https://constructconnect.com/) | **Docs:** [parse.bot/marketplace/7a52ab73-f743-4b79-8b50-ba8aaf8a2a2d/constructconnect-com-api](https://parse.bot/marketplace/7a52ab73-f743-4b79-8b50-ba8aaf8a2a2d/constructconnect-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-constructconnect-com-api-7a52ab73/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_blog_post_details

Retrieve the full content of a specific blog post by its URL. Returns the title and full text content of the post.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `post_url` | string | Yes | Full URL of the blog post (e.g. from get_blog_posts results). |

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

### get_blog_posts

Retrieve recent blog articles from the ConstructConnect blog. Optionally filter by category tag slug. Returns post titles, URLs, and excerpts.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Category tag slug to filter posts (e.g. 'construction-news', 'estimating'). Omitting returns all recent posts. |

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

### get_economic_insights

Retrieve construction economic reports and industry analysis links from the ConstructConnect economics resources page. Returns titles and URLs of reports and forecasts.

**Estimated cost:** Metered

_No parameters required._

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

### get_industry_events

Retrieve upcoming construction industry events and trade shows listed on the ConstructConnect events page. Returns event names, dates, and locations.

**Estimated cost:** Metered

_No parameters required._

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

### get_market_report

Retrieve national market report data showing total active projects and counts by state and county. Returns aggregated project counts across all US states and counties. No parameters required.

**Estimated cost:** Metered

_No parameters required._

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

### get_pricing_plans

Retrieve available subscription and pricing plans from the ConstructConnect pricing page. Returns plan names and their included features.

**Estimated cost:** Metered

_No parameters required._

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

### get_projects_by_state

List construction projects for a specific state, sorted by most recently reported. Returns project details including name, location, type, value, description, and more. Paginates via the limit parameter.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of projects to return (1-100). |
| `state` | string | Yes | US state name (e.g. 'utah', 'california') or 2-letter abbreviation (e.g. 'UT', 'CA'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-constructconnect-com-api-7a52ab73/get_projects_by_state \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","state":"<string>"}'
```
