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

> Browse the latest sustainability and eco-friendly trends organized by category with easy navigation through paginated results. Get in-depth details on any trend article including content, imagery, and metadata to stay informed on emerging environmental innovations.

**Category:** News & Media | **Website:** [www.trendhunter.com/eco](https://www.trendhunter.com/eco) | **Docs:** [parse.bot/marketplace/82238c78-cc84-4244-bb62-ca958c0a22a0/trendhunter-com-api](https://parse.bot/marketplace/82238c78-cc84-4244-bb62-ca958c0a22a0/trendhunter-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-trendhunter-com-api-82238c78/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_trend

Retrieve full details of a specific trend article by its URL slug. Returns the complete article body text, author, publication dates, category, breadcrumb path, popularity score (0-100 percentage), and image URL.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | URL slug of the trend article (e.g. 'blue-ocean-closures-paperplug'). Obtained from list_trends results. |

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

### list_trends

List trend articles from a category page with pagination. Returns 30 trends per page including title, subtitle, trend label, short description, publication date, and image. Categories correspond to top-level navigation sections on TrendHunter. Results are auto-iterated across pages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Category slug for the trend listing page. |
| `page` | integer | No | Page number for pagination. Each page returns up to 30 trends. |

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