# Sellercentral Amazon — 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 and browse discussion threads from Amazon Seller Central Forums to find answers from other sellers, view replies, and access community conversations about selling on Amazon. Retrieve detailed information about specific threads to stay informed on best practices and troubleshooting tips shared by the seller community.

**Category:** E-commerce | **Website:** [sellercentral.amazon.com/seller-forums/discussions?sortBy=relevance&dateRange=pastYear&replies=repliesAll&contentType=ALL](https://sellercentral.amazon.com/seller-forums/discussions?sortBy=relevance&dateRange=pastYear&replies=repliesAll&contentType=ALL) | **Docs:** [parse.bot/marketplace/6f328776-2b11-44e9-8246-80006c2ec71e/sellercentral-amazon-com-api](https://parse.bot/marketplace/6f328776-2b11-44e9-8246-80006c2ec71e/sellercentral-amazon-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-sellercentral-amazon-com-api-6f328776/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_thread

Get a specific forum thread by ID, including the original post content and its top-level replies. Returns the thread's full content, metadata, and the first page of replies (up to ~8 top-level replies from the initial page load). The thread_id is obtained from search_discussions results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `thread_id` | string | Yes | UUID of the thread (e.g. '583d8dac-3126-435f-9866-97f01defba1d'). Obtained from search_discussions results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-sellercentral-amazon-com-api-6f328776/get_thread \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"thread_id":"<string>"}'
```

### search_discussions

Search and browse Amazon Seller Central Forums discussions. Supports text search, sorting, date filtering, and cursor-based pagination. Returns discussion summaries with metadata. When no search_term is provided, returns all discussions matching the filters. Each page returns up to `limit` results along with a next_page_token for fetching subsequent pages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `date_range` | string | No | Time window filter for discussions. |
| `limit` | integer | No | Number of results per page (1-50). |
| `page_token` | string | No | Pagination cursor from a previous response's next_page_token. Pass unchanged to fetch the next page. |
| `replies_filter` | string | No | Filter by reply status. |
| `search_term` | string | No | Free-text search query to filter discussions (e.g. 'FBA shipping'). Omitting returns all discussions matching other filters. |
| `sort_by` | string | No | Sort order for results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-sellercentral-amazon-com-api-6f328776/search_discussions \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"date_range":"<string>","limit":"<integer>","page_token":"<string>","replies_filter":"<string>","search_term":"<string>","sort_by":"<string>"}'
```
