# Extract a Jumia product price and seller

**Use case:** 

Enrich one public Jumia product URL with its current price, currency, availability, rating, SKU, and public seller identity.

## Input

```json
{
  "queries": [
    "iphone"
  ],
  "countries": [
    "NG",
    "KE"
  ],
  "startUrls": [
    {
      "url": "https://www.jumia.com.ng/renewed-iphone-6-4.7-1gb-rab64gb-rom-8mpx-4g-reconditionne-99.99new-space-grey-409090825.html"
    }
  ],
  "maxItems": 1,
  "maxPagesPerQuery": 2,
  "includeSellerDetails": true
}
```

## Output

```json
{
  "title": {
    "label": "Product",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "availability": {
    "label": "Availability",
    "format": "string"
  },
  "sellerName": {
    "label": "Seller",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "countryName": {
    "label": "Country",
    "format": "string"
  },
  "sourceUrl": {
    "label": "Product URL",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Jumia Scraper](https://apify.com/automation-lab/jumia-products-sellers-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/jumia-products-sellers-scraper) to learn more, explore other use cases, and run it yourself.