# Noon — 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 data from noon.com.

**Category:** E-commerce | **Website:** [www.noon.com/uae-en/grocery-store/](https://www.noon.com/uae-en/grocery-store/) | **Docs:** [parse.bot/marketplace/236b8bb8-3e26-4c35-ae9f-68c8e43e7fda/noon-com-api](https://parse.bot/marketplace/236b8bb8-3e26-4c35-ae9f-68c8e43e7fda/noon-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-noon-com-api-236b8bb8/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product

Retrieve full product details by noon SKU, including brand, description, pricing, images, rating, specifications, and model number/barcode when available. The SKU can be obtained from search_products results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `sku` | string | Yes | Noon product SKU identifier (e.g. N70187480V, Z3E4E64CF19A1C522FFE0Z). Obtainable from search_products results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-noon-com-api-236b8bb8/get_product \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"sku":"<string>"}'
```

### search_grocery_by_barcode

Search noon.com grocery products by barcode/EAN number. First searches within the grocery store category; if no results found, falls back to the full catalog. Accepts standard barcode formats (EAN-8, EAN-13, UPC-A, GTIN-14). Returns matching products with pricing, brand, image, and SKU.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `barcode` | string | Yes | Numeric barcode/EAN number (8-14 digits). Supports EAN-8, EAN-13, UPC-A, and GTIN-14 formats. |
| `page` | integer | No | Page number for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-noon-com-api-236b8bb8/search_grocery_by_barcode \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"barcode":"<string>","page":"<integer>"}'
```

### search_products

Full-text and barcode search across noon.com's product catalog. Accepts any search query including product names, keywords, or barcode/EAN numbers. Returns a paginated list of matching products with pricing, brand, and image data. Results are ordered by noon's relevance algorithm.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `query` | string | Yes | Search query — free text (product name, keywords) or numeric barcode/EAN to search by barcode. |

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