# Jumia (Nigeria) — 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 and browse thousands of products on Jumia Nigeria, including electronics, appliances, fashion, and more. Get real-time access to pricing, specifications, ratings, and availability across Jumia's full catalog to find and compare products.

**Category:** E-commerce | **Website:** [jumia.com.ng/](https://jumia.com.ng/) | **Docs:** [parse.bot/marketplace/6e2d21d9-e5b4-445d-aaf0-7dce3b39609e/jumia-com-ng-api](https://parse.bot/marketplace/6e2d21d9-e5b4-445d-aaf0-7dce3b39609e/jumia-com-ng-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-jumia-com-ng-api-6e2d21d9/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_category_list

Retrieve the full category and subcategory navigation tree from Jumia Nigeria. Returns all top-level categories with their subcategories and URLs.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-jumia-com-ng-api-6e2d21d9/get_category_list \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_flash_sales

Retrieve current flash sale products from Jumia Nigeria. Returns all products currently featured in the flash sales section. No parameters needed.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-jumia-com-ng-api-6e2d21d9/get_flash_sales \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_gaming_laptops

Retrieve gaming laptop listings from Jumia Nigeria's gaming-laptops category with support for brand and price filters. Returns paginated results. This is a convenience wrapper around search_products scoped to the gaming-laptops category.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `brand` | string | No | Brand name or slug to filter by. |
| `page` | integer | No | Page number for pagination. |
| `price_max` | integer | No | Maximum price filter in NGN. Must be used together with price_min. |
| `price_min` | integer | No | Minimum price filter in NGN. Must be used together with price_max. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-jumia-com-ng-api-6e2d21d9/get_gaming_laptops \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"brand":"<string>","page":"<integer>","price_max":"<integer>","price_min":"<integer>"}'
```

### get_product_details

Retrieve full product details for a specific Jumia Nigeria product including title, pricing, product description, specifications, and review summary. Requires a product URL obtained from search or listing endpoints.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Full product URL (e.g. 'https://www.jumia.com.ng/product-slug-12345.html') or relative path (e.g. '/product-slug-12345.html'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-jumia-com-ng-api-6e2d21d9/get_product_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### search_products

Search for products on Jumia Nigeria by keyword, category, brand, and price range. Returns paginated product listings with pricing, ratings, and availability information. At least one of query or category should be provided for meaningful results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `brand` | string | No | Brand name or slug to filter results (e.g. 'hp', 'samsung'). |
| `category` | string | No | Category slug used in the URL path (e.g. 'laptops', 'smartphones'). |
| `page` | integer | No | Page number for pagination. |
| `price_max` | integer | No | Maximum price filter in NGN. Must be used together with price_min. |
| `price_min` | integer | No | Minimum price filter in NGN. Must be used together with price_max. |
| `query` | string | No | Search keyword (e.g. 'laptop', 'samsung phone'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-jumia-com-ng-api-6e2d21d9/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"brand":"<string>","category":"<string>","page":"<integer>","price_max":"<integer>","price_min":"<integer>","query":"<string>"}'
```
