# GFY — 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 the latest discussion posts and activity from GFY.com's webmaster community forum in real-time, with flexible filtering by timestamp and content type to stay updated on topics relevant to your interests. Get instant alerts whenever new posts are published so you never miss important conversations or announcements from the adult industry forum.

**Category:** Social Media | **Website:** [gfy.com/](https://gfy.com/) | **Docs:** [parse.bot/marketplace/0081bf80-65c6-4b72-8cbf-79975b762751/gfy-com-api](https://parse.bot/marketplace/0081bf80-65c6-4b72-8cbf-79975b762751/gfy-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-gfy-com-api-0081bf80/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_new_posts

Fetches the latest forum activity (new topics and/or replies) with filtering by time range, content type, and whether to show only new topics or include replies. Returns paginated results ordered by most recent first. Each page returns up to per_page posts. The upstream caps traversal at 20 pages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `content_type` | string | No | Filter by content type. Omitting defaults to all. |
| `new_topics_only` | boolean | No | When true, shows only new topics (thread starters). When false, includes replies as well. |
| `page` | integer | No | Page number for pagination (1-indexed). Maximum 20 pages. |
| `per_page` | integer | No | Number of posts per page, between 1 and 50. |
| `time_filter` | string | No | Time range to filter posts. Omitting defaults to last_month. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-gfy-com-api-0081bf80/get_new_posts \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"content_type":"<string>","new_topics_only":"<boolean>","page":"<integer>","per_page":"<integer>","time_filter":"<string>"}'
```
