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

> Monitor and search forum discussions about company layoffs, accessing post titles, content, author information, dates, and community reactions across TheLayoff.com. Browse through paginated results and dive into individual posts to read full reply threads and conversation details.

**Category:** Jobs | **Website:** [www.thelayoff.com/apple](https://www.thelayoff.com/apple) | **Docs:** [parse.bot/marketplace/ca1ef923-19b8-458b-8c6e-39fc9b91b681/thelayoff-com-api](https://parse.bot/marketplace/ca1ef923-19b8-458b-8c6e-39fc9b91b681/thelayoff-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-thelayoff-com-api-ca1ef923/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_post_detail

Get the full content of a specific forum post including all replies with their content, authors, dates, and reactions. Each reply includes its own reaction counts and author info. The post_id can be obtained from get_posts results (strip the '@OP+' prefix if present).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `post_id` | string | Yes | Post ID (e.g., '1kq7pfwbw'). Can include '@OP+' prefix which will be stripped automatically. Obtain from get_posts results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-thelayoff-com-api-ca1ef923/get_post_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"post_id":"<string>"}'
```

### get_posts

Get a paginated list of forum posts for a specific company's layoff discussion page. Returns post titles, content previews, dates, authors, view counts, reactions, and reply counts. Paginates via integer page number; each page returns up to 40 posts. Sort by newest or most recently active threads.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `company` | string | No | Company slug used in the URL path (e.g., 'apple', 'google', 'amazon', 'meta', 'microsoft', 'tesla'). |
| `page` | integer | No | Page number for pagination (1-based). |
| `sort` | string | No | Sort order for posts. |

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