# Forum Freightwaves — 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.

> Connect with the FreightWaves Forum community by accessing publicly available freight and logistics discussions, topics, and professional insights shared by industry experts. Retrieve specific forum posts and topic conversations to stay informed on supply chain trends and engage with the transport industry community.

**Category:** News & Media | **Website:** [forum.freightwaves.com/c/general/4](https://forum.freightwaves.com/c/general/4) | **Docs:** [parse.bot/marketplace/b7dceef0-a5c7-4c8a-b160-bf88d006282c/forum-freightwaves-com-api](https://parse.bot/marketplace/b7dceef0-a5c7-4c8a-b160-bf88d006282c/forum-freightwaves-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-forum-freightwaves-com-api-b7dceef0/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_posts

Get posts from the FreightWaves Forum. Without a category filter, returns the latest posts across all categories with full post content. With a category filter, returns topic listings for that category with pagination support. Each page returns up to 30 topics.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Category slug to filter topics (e.g. 'general', 'news-discussion', 'fraud', 'modern-shipper', 'american-shipper', 'postalmag', 'what-the-truck', 'site-feedback'). When omitted, returns latest posts across all categories. |
| `page` | integer | No | Page number for category topic listings (0-indexed). Only applies when category is specified. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-forum-freightwaves-com-api-b7dceef0/get_posts \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","page":"<integer>"}'
```

### get_topic_posts

Get all posts within a specific forum topic by its numeric ID. Returns topic metadata and the full post stream including HTML content, author info, and engagement metrics. Topic IDs can be obtained from the get_posts endpoint.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `topic_id` | string | Yes | Numeric topic ID (e.g. '5', '10872'). Obtainable from get_posts results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-forum-freightwaves-com-api-b7dceef0/get_topic_posts \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"topic_id":"<string>"}'
```
