# Nbmarketunion Manufacturer 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.

> Access comprehensive supplier profiles from Global Sources including company overviews, contact details, product categories, trade show participation, and buyer reviews to research and connect with manufacturers. Quickly gather intelligence on potential suppliers' backgrounds, offerings, and market reputation all in one place.

**Category:** Business Directories | **Website:** [nbmarketunion.manufacturer.globalsources.com/](https://nbmarketunion.manufacturer.globalsources.com/) | **Docs:** [parse.bot/marketplace/81ffd88a-ea26-484a-8556-25b6a4d3dc09/nbmarketunion-manufacturer-globalsources-com-api](https://parse.bot/marketplace/81ffd88a-ea26-484a-8556-25b6a4d3dc09/nbmarketunion-manufacturer-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-nbmarketunion-manufacturer-globalsources-com-api-81ffd88a/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_buyer_reviews

Retrieves buyer reviews from the company profile page's JSON-LD structured data. Returns review text, author name, and rating value. Returns an empty array when no reviews exist.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `org_id` | string | Yes | Organization ID on Global Sources (numeric string, e.g. '2008857566700'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-nbmarketunion-manufacturer-globalsources-com-api-81ffd88a/get_buyer_reviews \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"org_id":"<string>"}'
```

### get_company_overview

Retrieves a supplier's company overview including name, logo, business types, verification status, response metrics, main markets, products, and sales figures. Combines data from the header-snapshot and company-snapshot APIs. A single round-trip per source; no pagination.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `org_id` | string | Yes | Organization ID on Global Sources (numeric string, e.g. '2008857566700'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-nbmarketunion-manufacturer-globalsources-com-api-81ffd88a/get_company_overview \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"org_id":"<string>"}'
```

### get_contact_information

Retrieves a supplier's contact details including address, city, province, country, postal code, contact person, and website. Parsed from the supplier's contact-us page structured data. Fields are null when not published by the supplier.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `org_id` | string | Yes | Organization ID on Global Sources (numeric string, e.g. '2008857566700'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-nbmarketunion-manufacturer-globalsources-com-api-81ffd88a/get_contact_information \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"org_id":"<string>"}'
```

### get_product_categories

Lists a supplier's top-level product categories with names, IDs, product counts, and representative images. Returns an empty array when the org_id is unknown. No pagination — all categories returned in one response.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `org_id` | string | Yes | Organization ID on Global Sources (numeric string, e.g. '2008857566700'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-nbmarketunion-manufacturer-globalsources-com-api-81ffd88a/get_product_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"org_id":"<string>"}'
```

### get_trade_shows

Lists a supplier's past Global Sources trade show appearances, including show names, dates, booth numbers, venues, and cities. Returns an empty array when the org_id is unknown. No pagination.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `org_id` | string | Yes | Organization ID on Global Sources (numeric string, e.g. '2008857566700'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-nbmarketunion-manufacturer-globalsources-com-api-81ffd88a/get_trade_shows \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"org_id":"<string>"}'
```
