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

> Steamcommunity provides 1 callable API endpoint through the Parse marketplace.

**Category:** Social Media | **Website:** [steamcommunity.com/app/1086940/discussions/0/3808408747680907370/](https://steamcommunity.com/app/1086940/discussions/0/3808408747680907370/) | **Docs:** [parse.bot/marketplace/243d583e-c275-4a0f-9c27-b510a2312f7a/steamcommunity-com-api](https://parse.bot/marketplace/243d583e-c275-4a0f-9c27-b510a2312f7a/steamcommunity-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-steamcommunity-com-api-243d583e/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_thread

Fetch the title, original post content, author, and date from a specific Steam community discussion thread. Requires a full steamcommunity.com discussion thread URL. Returns the opening post only, not replies.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `thread_url` | string | Yes | Full URL of a Steam community discussion thread (e.g. https://steamcommunity.com/app/1086940/discussions/0/3808408747680907370/). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-steamcommunity-com-api-243d583e/get_thread \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"thread_url":"<string>"}'
```
