# Global 1688 — 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 wholesale products on Alibaba's 1688 marketplace by keyword or category to find pricing, seller information, and product images all in one place. Browse thousands of items directly from suppliers to compare options and discover deals for your business needs.

**Category:** Marketplaces | **Website:** [global.1688.com/](https://global.1688.com/) | **Docs:** [parse.bot/marketplace/210f1bb0-5b58-49f3-81d6-b342cf86201f/global-1688-com-api](https://parse.bot/marketplace/210f1bb0-5b58-49f3-81d6-b342cf86201f/global-1688-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-global-1688-com-api-210f1bb0/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_category_products

Browse products within a specific 1688 category by its numeric ID. Returns the same product listing format as search. Results are auto-iterated across pages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_id` | string | Yes | Numeric 1688 category ID (e.g. '311' for general merchandise, '122708008' for computer peripherals). |
| `page` | integer | No | Page number for pagination, 1-based. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-global-1688-com-api-210f1bb0/get_category_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category_id":"<string>","page":"<integer>"}'
```

### search_products

Full-text keyword search across 1688.com wholesale listings. Supports optional category filtering. Results are auto-iterated across pages; each page returns up to 20 products with title, price, seller name, image, and sales volume.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Optional 1688 category ID to filter results (e.g. '122708008' for computer peripherals). Obtainable from get_category_products or the site's category navigation. |
| `page` | integer | No | Page number for pagination, 1-based. |
| `query` | string | Yes | Search keywords (e.g. 'bluetooth speaker', 'phone case'). Chinese or English. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-global-1688-com-api-210f1bb0/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","page":"<integer>","query":"<string>"}'
```
