# Threads (threads.com) — 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.

> Search for posts and users on Threads by keyword to discover content, view engagement metrics like likes and replies, and explore user profiles with their media. Find trending discussions and connect with creators all in one search experience.

**Category:** Social Media | **Website:** [www.threads.com/](https://www.threads.com/) | **Docs:** [parse.bot/marketplace/5852b6ba-ad32-4405-9c06-4dff00beddcb/threads-com-api](https://parse.bot/marketplace/5852b6ba-ad32-4405-9c06-4dff00beddcb/threads-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-threads-com-api-5852b6ba/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_posts

Full-text search over Threads posts by keyword. Returns matching posts with text content, engagement metrics (likes, replies, reposts, quotes), author info, media URLs, and link previews. Results are server-ranked; search_surface controls recency bias. Each post includes an embedded author object. No cursor-based pagination — a single page of up to `limit` results is returned per call.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of posts to return |
| `query` | string | Yes | Search keyword or phrase |
| `search_surface` | string | No | Search surface type that controls result ranking. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-threads-com-api-5852b6ba/search_posts \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","query":"<string>","search_surface":"<string>"}'
```

### search_users

Search for user accounts on Threads by keyword. Returns matching profiles with username, display name, profile picture URL, verification status, and whether the user is active on Threads. Results ranked by relevance to the query. No cursor-based pagination — a single page of up to `limit` results is returned per call.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of users to return |
| `query` | string | Yes | Search keyword for user/account name |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-threads-com-api-5852b6ba/search_users \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","query":"<string>"}'
```
