# Globalsources — 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 Global Sources for products and suppliers, then fetch related product info and a supplier’s latest product listings using product IDs and organization IDs.

**Category:** Business Directories | **Website:** [globalsources.com/](https://globalsources.com/) | **Docs:** [parse.bot/marketplace/2ce5e0d1-19e0-4565-a7ca-2bdc9fe48baa/globalsources-com-api](https://parse.bot/marketplace/2ce5e0d1-19e0-4565-a7ca-2bdc9fe48baa/globalsources-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-globalsources-com-api-2ce5e0d1/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product_detail

Get review summary and related products for a specific product by its ID. Returns zero-review summaries for products without reviews. Related products come from the same supplier or category.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_id` | string | Yes | Global Sources product ID (numeric string, e.g. '1231188355'). Obtainable from search_products results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-globalsources-com-api-2ce5e0d1/get_product_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_id":"<string>"}'
```

### get_supplier_products

Get the latest products from a specific supplier by their organization ID. Returns up to page_size products per page with pricing and availability information.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `org_id` | string | Yes | Supplier organization ID (e.g. '2008827124895'). Obtainable from search_suppliers or search_products results. |
| `page` | integer | No | Page number (1-indexed) |
| `page_size` | integer | No | Results per page |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-globalsources-com-api-2ce5e0d1/get_supplier_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"org_id":"<string>","page":"<integer>","page_size":"<integer>"}'
```

### search_products

Full-text product search across Global Sources. Returns paginated listings with pricing, MOQ, lead times, FOB ports, supplier info, and category hierarchy. Server-side filtering is limited to the keyword query; finer filtering is client-side over the returned list. Each product includes a nested supplier summary and full category breadcrumb.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number (1-indexed) |
| `page_size` | integer | No | Results per page (max 80) |
| `query` | string | Yes | Search keyword (e.g. 'power bank', 'solar panel', 'LED light') |

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

### search_suppliers

Search for suppliers by keyword. Returns paginated supplier profiles with business types, employee count, export markets, certifications, featured products, and profile images.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number (1-indexed) |
| `page_size` | integer | No | Results per page (max 20) |
| `query` | string | Yes | Search keyword for suppliers (e.g. 'electronics', 'furniture', 'textiles') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-globalsources-com-api-2ce5e0d1/search_suppliers \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","page_size":"<integer>","query":"<string>"}'
```
