Jumia Products Scraper — Prices, Sellers & Ratings
Pricing
from $6.80 / 1,000 results
Jumia Products Scraper — Prices, Sellers & Ratings
Scrape Jumia product listings across Africa (Nigeria, Kenya, Egypt, Ghana & more). Get price, discount, brand, seller, rating, reviews, SKU, specs. Export to JSON, CSV or Excel.
Pricing
from $6.80 / 1,000 results
Rating
0.0
(0)
Developer
Scrapers Lat
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
3 days ago
Last modified
Categories
Share
Jumia Products Scraper - Prices, Sellers & Ratings
Here is one real result, with every field the actor returns (the long description, keyFeatures and aiDescription values are trimmed here for readability; the dataset returns them in full):
{"sku": "SA948MP7KVUNENAFAMZ","name": "Samsung Galaxy A06 6.7\" 4GB RAM/64GB ROM Android 14 - Black","brand": "Samsung","price": 119999,"priceDisplay": "₦ 119,999","currency": "NGN","oldPrice": 127518,"oldPriceDisplay": "₦ 127,518","discountPercent": 6,"priceUsd": 76.42,"rating": 4.1,"reviewCount": 541,"sellerId": 339709,"isExpress": true,"isSponsored": false,"isBuyable": true,"category": "Phones & Tablets / Mobile Phones / Smartphones / Android Phones","categoryTop": "Phones & Tablets","image": "https://ng.jumia.is/unsafe/fit-in/300x300/filters:fill(white)/product/58/3416104/1.jpg?8232","url": "https://www.jumia.com.ng/samsung-galaxy-a06-6.7-4gb-ram64gb-rom-android-14-black-401614385.html","country": "NG","searchQuery": "phone","source": "jumia","observedAt": "2026-08-14T08:13:31.915Z","description": "6.7 inches IPS LCD display. Mediatek Helio G85 (12 nm). 4GB RAM/64GB of internal storage ... (full text returned; trimmed here)","availability": "InStock","itemCondition": "NewCondition","gtin": "00000071594064","specifications": "SKU: SA948MP7KVUNENAFAMZ | GTIN Barcode: 00000071594064 | Product Line: Were Deals Phones NG - 1 AC | Model: A06 | Weight (kg): 0.17","specCount": 5,"keyFeatures": "6.7 inches IPS LCD display | Mediatek Helio G85 (12 nm) | 4GB RAM/64GB of internal storage ... (full text returned; trimmed here)","sellerName": "Were Deals Phones NG 1 - AC","sellerScore": 92,"aiDescription": "The Samsung Galaxy A06 features a 6.7-inch IPS LCD display and is powered by a Mediatek Helio G85 processor ... (AI add-on output, trimmed)","aiAttributes": {"category": "Smartphones","color": "Black","model": "A06","material": null,"keySpecs": {"display": "6.7 inches IPS LCD", "processor": "Mediatek Helio G85 (12 nm)", "ram": "4GB", "storage": "64GB", "battery": "5,000 mAh"},"tags": ["Samsung", "Android", "Smartphone", "4GB RAM", "64GB Storage"]}}
The most complete Jumia products scraper available. It returns every field the Jumia catalog exposes for each product across ten African marketplaces, including current and old price, discount, a USD conversion, rating, seller name and score, availability, condition and GTIN, and gives you search, category, price and sort filters plus optional AI add-ons to target exactly the products you need.
📥 Input · 📤 Output · 💰 Pricing · ▶️ Examples
Table of contents
- What it does
- Quickstart
- Input reference
- Output reference
- Example output record
- Run via API and CLI
- Fetch results
- Billing and limits
- FAQ and troubleshooting
What it does
The actor searches a Jumia country marketplace by keyword or category path, paginates the catalog, and writes one normalized record per product to the run's dataset. Each record carries the product identity, current and old price with discount percent, a USD-converted price, rating and review count, and seller info. When withDetails is on (default), each product page is opened for full specifications, description, seller name and score, availability, condition and GTIN. Missing source values are returned as null, never invented.
Optional add-ons enrich each record: an AI English description and structured AI attributes (category, color, model, key specs, tags). Both are off by default and require a paid Apify plan.
Quickstart
Open the actor, paste this into the input, and press Run. It searches the Nigeria marketplace for phones and returns up to 40 products with details.
{"country": "ng","searchQueries": ["phone"],"maxProducts": 40,"withDetails": true}
Provide at least one searchQueries term or one categoryPaths entry. You can combine both.
Input reference
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
country | enum | no | ng | Jumia marketplace: ng, ke, eg, gh, ci, ma, dz, tn, ug, sn. |
searchQueries | string[] | no | ["phone"] | One or more search terms. Each runs a separate Jumia catalog search. |
categoryPaths | string[] | no | (none) | Jumia category paths to scrape instead of or in addition to search (for example phones-tablets, electronics, health-beauty). |
sort | enum | no | relevance | Result order: relevance, newest, popularity, price_asc, price_desc. |
minPrice | integer | no | (none) | Keep only products priced at or above this amount (local currency). |
maxPrice | integer | no | (none) | Keep only products priced at or below this amount (local currency). |
withDetails | boolean | no | true | Open each product page for full specifications, description, seller name and score, availability, condition and GTIN. Off for fast listing-only. |
maxProducts | integer | no | 40 | Maximum products to return across all searches. Free Apify plans are capped at 10. |
withAiDescription | boolean | no | false | Paid add-on. Write a clean English marketing description of each product. Requires a paid Apify plan. Billed only when produced. |
withAiAttributes | boolean | no | false | Paid add-on. Extract structured attributes (category, color, model, material, key specs, tags). Requires a paid Apify plan. Billed only when produced. |
Output reference
One dataset item per product. Types: string, number, integer, boolean, object, or null when the source value is absent.
| Field | Type | Description |
|---|---|---|
sku | string | Jumia SKU code, unique per product. |
name | string | Product name. |
brand | string | Brand name, or null. |
price | number | Current price in local currency. |
priceDisplay | string | Current price as displayed with currency symbol. |
currency | string | Local currency code (for example NGN, KES, EGP). |
oldPrice | number | Previous price before discount, or null. |
oldPriceDisplay | string | Previous price as displayed, or null. |
discountPercent | integer | Discount percent off the old price, or null. |
priceUsd | number | Current price converted to USD. |
rating | number | Average star rating, or null. |
reviewCount | integer | Number of reviews, or null. |
sellerId | integer | Jumia seller id. |
isExpress | boolean | Whether the product ships via Jumia Express. |
isSponsored | boolean | Whether the listing is sponsored. |
isBuyable | boolean | Whether the product can currently be bought. |
category | string | Full category path. |
categoryTop | string | Top-level category. |
image | string | Product image URL. |
url | string | Public product page URL. |
country | string | Two-letter marketplace country code. |
searchQuery | string | The search term that matched this product. |
source | string | Always jumia. |
observedAt | string | ISO 8601 timestamp of when the record was collected. |
description | string | Full product description (when withDetails is on). |
availability | string | Stock status (for example InStock). |
itemCondition | string | Condition (for example NewCondition). |
gtin | string | Global trade item number / barcode, or null. |
specifications | string | Pipe-delimited specification attributes (when withDetails is on). |
specCount | integer | Number of specification attributes found. |
keyFeatures | string | Pipe-delimited key features (when withDetails is on). |
sellerName | string | Seller name (when withDetails is on). |
sellerScore | integer | Seller score out of 100 (when withDetails is on). |
aiDescription | string | AI English description (paid add-on), else null. |
aiAttributes | object | AI-extracted attributes (paid add-on), else null. |
error | string | null on success. On a failed run, a single item with a populated error field is written instead. |
Example output record
Real record from a live run (input {"country":"ng","searchQueries":["phone"],"withDetails":true} with AI add-ons enabled). The description, keyFeatures and aiDescription values are trimmed here for readability; the dataset returns them in full.
{"sku": "SA948MP7KVUNENAFAMZ","name": "Samsung Galaxy A06 6.7\" 4GB RAM/64GB ROM Android 14 - Black","brand": "Samsung","price": 119999,"priceDisplay": "₦ 119,999","currency": "NGN","oldPrice": 127518,"oldPriceDisplay": "₦ 127,518","discountPercent": 6,"priceUsd": 76.42,"rating": 4.1,"reviewCount": 541,"sellerId": 339709,"isExpress": true,"isSponsored": false,"isBuyable": true,"category": "Phones & Tablets / Mobile Phones / Smartphones / Android Phones","categoryTop": "Phones & Tablets","image": "https://ng.jumia.is/unsafe/fit-in/300x300/filters:fill(white)/product/58/3416104/1.jpg?8232","url": "https://www.jumia.com.ng/samsung-galaxy-a06-6.7-4gb-ram64gb-rom-android-14-black-401614385.html","country": "NG","searchQuery": "phone","source": "jumia","observedAt": "2026-08-14T08:13:31.915Z","description": "6.7 inches IPS LCD display. Mediatek Helio G85 (12 nm). 4GB RAM/64GB of internal storage ... (trimmed; full text in dataset)","availability": "InStock","itemCondition": "NewCondition","gtin": "00000071594064","specifications": "SKU: SA948MP7KVUNENAFAMZ | GTIN Barcode: 00000071594064 | Product Line: Were Deals Phones NG - 1 AC | Model: A06 | Weight (kg): 0.17","specCount": 5,"keyFeatures": "6.7 inches IPS LCD display | Mediatek Helio G85 (12 nm) | 4GB RAM/64GB of internal storage ... (trimmed; full text in dataset)","sellerName": "Were Deals Phones NG 1 - AC","sellerScore": 92,"aiDescription": "The Samsung Galaxy A06 features a 6.7-inch IPS LCD display and is powered by a Mediatek Helio G85 processor ... (trimmed; full text in dataset)","aiAttributes": {"category": "Smartphones","color": "Black","model": "A06","material": null,"keySpecs": {"display": "6.7 inches IPS LCD", "processor": "Mediatek Helio G85 (12 nm)", "ram": "4GB", "storage": "64GB", "battery": "5,000 mAh"},"tags": ["Samsung", "Android", "Smartphone", "4GB RAM", "64GB Storage"]}}
Run via API and CLI
Start a run and wait for it to finish, then read the dataset. Replace <TOKEN> with your Apify API token.
Run synchronously and get dataset items in one call:
curl -X POST "https://api.apify.com/v2/acts/scrapers_lat~jumia-products-scraper/run-sync-get-dataset-items?token=<TOKEN>" \-H "Content-Type: application/json" \-d '{"country":"ng","searchQueries":["phone"],"maxProducts":25}'
Start a run asynchronously:
curl -X POST "https://api.apify.com/v2/acts/scrapers_lat~jumia-products-scraper/runs?token=<TOKEN>" \-H "Content-Type: application/json" \-d '{"country":"ke","categoryPaths":["electronics"],"sort":"price_asc","maxProducts":200}'
Apify CLI:
apify call scrapers_lat/jumia-products-scraper \--input '{"country":"ng","searchQueries":["laptop"]}'
Fetch results
Every run writes to a dataset. Fetch items as JSON, CSV, or Excel by changing format:
# JSONcurl "https://api.apify.com/v2/datasets/<DATASET_ID>/items?token=<TOKEN>&clean=true&format=json"# CSVcurl "https://api.apify.com/v2/datasets/<DATASET_ID>/items?token=<TOKEN>&clean=true&format=csv"# Paginate large datasetscurl "https://api.apify.com/v2/datasets/<DATASET_ID>/items?token=<TOKEN>&offset=1000&limit=1000"
<DATASET_ID> is returned as defaultDatasetId in the run object. Use offset and limit to page through large result sets. clean=true drops empty and internal fields.
Billing and limits
- Pay per result. You are charged per product returned (
resultevent). See the pricing tab for the current per-result price. - No charge on failure. If a run errors, the actor writes a single item with a populated
errorfield and does not charge for it. Empty runs cost nothing. - Spend cap respected. Set
maxTotalChargeUsdon the run; once reached, the actor stops emitting and charging further billable results. - Free Apify plans are capped at 10 records per run. The AI add-ons require a paid Apify plan. Upgrade for higher
maxProductsand AI enrichment.
FAQ and troubleshooting
Which marketplaces are covered?
Nigeria (ng), Kenya (ke), Egypt (eg), Ghana (gh), Ivory Coast (ci), Morocco (ma), Algeria (dz), Tunisia (tn), Uganda (ug) and Senegal (sn). Choose one per run with country.
Can I scrape a whole category?
Yes. Pass one or more categoryPaths (for example phones-tablets) instead of or alongside searchQueries.
What is priceUsd?
The current local price converted to US dollars for cross-market comparison. The original local amount is kept in price and priceDisplay.
Why is description empty?
It is only fetched when withDetails is enabled (on by default). Disable it for faster listing-only runs.
A run returned 0 records. Why?
The search or category matched nothing, or your minPrice/maxPrice filters excluded everything. Zero-result runs are not charged.
Are the AI add-ons free?
No. withAiDescription and withAiAttributes require a paid Apify plan and are billed only when they return usable output. They are off by default.
Is this an official Jumia tool? No. This actor is independent and has no affiliation with Jumia. It only accesses publicly available catalog data. Use the results in accordance with the source's terms.
Related scrapers
- Jumbo Argentina Grocery Price Scraper: grocery prices from Jumbo Argentina.
- Kavak Used Cars Scraper: used-car listings and prices from Kavak.
- MercadoLibre Scraper: listings and prices across MercadoLibre marketplaces.
- 1688 Wholesale Scraper: wholesale product listings from 1688.
More scrapers at scrapers.lat
Built and maintained by scrapers.lat, where we publish scrapers for US and Latin American public platforms: company registries, government data, finance, e-commerce and more. Browse the catalog or request a custom scraper at scrapers.lat.
Independent tool, not affiliated with Jumia. Accesses only publicly available catalog data. Use the results in accordance with the source's terms.
