# Banggood — 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 Banggood products and retrieve detailed information including prices, specifications, and customer reviews to help you discover items and make informed purchasing decisions. Perfect for monitoring inventory, comparing products, and staying updated on what's available across Banggood's catalog.

**Category:** E-commerce | **Website:** [banggood.com/](https://banggood.com/) | **Docs:** [parse.bot/marketplace/53f6f33a-f5b9-4bbf-afba-232c11ecfc0a/banggood-com-api](https://parse.bot/marketplace/53f6f33a-f5b9-4bbf-afba-232c11ecfc0a/banggood-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-banggood-com-api-53f6f33a/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product_details

Retrieve detailed information for a specific Banggood product including pricing, description, rating, images, and categories. Data extracted from JSON-LD structured data on the product page. When product_url is omitted, a generic URL is constructed from product_id that redirects to the canonical page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_id` | string | Yes | The Banggood product ID (numeric string, e.g. '2035773'). |
| `product_url` | string | No | The full product URL. Optional; without it a redirect-based URL is constructed from product_id. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-banggood-com-api-53f6f33a/get_product_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_id":"<string>","product_url":"<string>"}'
```

### get_product_reviews

Fetch customer reviews for a Banggood product. Parses the product reviews page to extract reviewer names, dates, text, and star ratings. Returns reviews from the first page only.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_id` | string | Yes | The Banggood product ID (numeric string, e.g. '2035773'). |
| `product_url` | string | No | The full product URL. Used to construct the reviews page URL; without it a generic URL is used. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-banggood-com-api-53f6f33a/get_product_reviews \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_id":"<string>","product_url":"<string>"}'
```

### search_products

Full-text search over Banggood product listings by keyword. Returns basic product info including title, URL, and image. Prices may be empty for some products in search results. Single-page results; the limit param controls max items returned.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of products to return. |
| `query` | string | Yes | The search term (e.g. '3d printer', 'wireless earbuds'). |

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