Discover/Com API
live

Com APIjumia.com.gh

Access Jumia Ghana product listings, pricing, ratings, variants, and categories via 5 structured endpoints. Search, browse, and retrieve product details.

Endpoint health
verified 2d ago
get_categories
get_product_details
search_products
get_category_products
get_search_suggestions
5/5 passing latest checkself-healing
Endpoints
5
Updated
26d ago

What is the Com API?

The Jumia Ghana API provides 5 endpoints to search products, browse category listings, retrieve full product details, list all categories, and fetch search autocomplete suggestions from jumia.com.gh. The get_product_details endpoint returns variant-level data including per-SKU pricing, stock status, and buyability flags, while search_products covers pagination, discount fields, and aggregate rating counts across Jumia Ghana's catalog.

Try it
Page number for pagination
Search query (e.g., 'samsung phone', 'laptop', 'shoes')
api.parse.bot/scraper/7eac180a-7816-41f6-a068-80621f5e23bd/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/7eac180a-7816-41f6-a068-80621f5e23bd/search_products?page=1&query=laptop' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace jumia-com-gh-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Jumia Ghana: search products, browse categories, get details."""
from parse_apis.jumia_ghana_api import JumiaGhana, ProductNotFound

client = JumiaGhana()

# Search for products by keyword, capped at 5 results
for product in client.products.search(query="laptop", limit=5):
    print(product.name, product.price_formatted, product.discount)

# Get autocomplete suggestions
suggestion = client.suggestions.search(query="samsung", limit=1).first()
if suggestion:
    print(suggestion.text, suggestion.url)

# Browse a category by constructing it from its slug
phones = client.category(slug="phones-tablets")
for phone in phones.products(limit=3):
    print(phone.name, phone.price, phone.brand)

# Drill into product details from a search result
product = client.products.search(query="shoes", limit=1).first()
if product:
    try:
        detail = product.details()
        print(detail.name, detail.price_formatted, detail.seller_name)
        for variant in detail.variants:
            print(variant.sku, variant.price_formatted, variant.stock_info)
    except ProductNotFound as exc:
        print(f"Product gone: {exc.product_url}")

# List all categories
for cat in client.categories.list(limit=5):
    print(cat.name, cat.slug)

print("exercised: products.search / suggestions.search / category.products / product.details / categories.list")
All endpoints · 5 totalmissing one? ·

Search for products on Jumia Ghana by keyword. Returns paginated product listings with pricing, ratings, and category information. Each page returns up to 40 products. Use the total_pages field to know how many pages are available.

Input
ParamTypeDescription
pageintegerPage number for pagination
queryrequiredstringSearch query (e.g., 'samsung phone', 'laptop', 'shoes')
Response
{
  "type": "object",
  "fields": {
    "page": "integer, current page number",
    "query": "string, the search query used",
    "products": "array of product objects with sku, name, brand, url, image, price, price_formatted, old_price, discount, rating, total_ratings, categories, is_shop_express, is_buyable, seller_id",
    "total_pages": "integer, total number of pages available",
    "total_products": "integer, total number of matching products",
    "products_on_page": "integer, number of products on this page"
  },
  "sample": {
    "data": {
      "page": 1,
      "query": "laptop",
      "products": [
        {
          "sku": "WS788CL3Y3ML1NAFAMZ",
          "url": "https://www.jumia.com.gh/wsd-brand-new-e142n-14laptop-290747683.html",
          "name": "WSD Brand new E142N- 14\"Laptop Intel N3450 6GB+256 GB SSD",
          "brand": "WSD",
          "image": "https://gh.jumia.is/unsafe/fit-in/300x300/filters:fill(white)/product/38/6747092/1.jpg",
          "price": "3201.00",
          "rating": 4,
          "discount": "12%",
          "old_price": "GH₵ 3 625",
          "seller_id": 74925,
          "categories": [
            "Computing",
            "Computers & Accessories"
          ],
          "is_buyable": true,
          "total_ratings": 1,
          "is_shop_express": true,
          "price_formatted": "GH₵ 3 201"
        }
      ],
      "total_pages": 42,
      "total_products": 1672,
      "products_on_page": 40
    },
    "status": "success"
  }
}

About the Com API

Search and Browse

The search_products endpoint accepts a query string and an optional page integer, returning a paginated list of products with fields like sku, name, brand, price, price_formatted, old_price, discount, rating, total_ratings, and url. The response also includes total_products and total_pages so you can walk through all matching results systematically. The get_category_products endpoint works the same way but takes a category_slug instead of a keyword — slugs are discovered via get_categories.

Category Navigation

get_categories requires no inputs and returns all available top-level and sub-categories as an array of objects, each containing name, slug, and url. The total_categories count is included at the top level. These slugs feed directly into get_category_products, so you can enumerate the full navigation tree and then pull products for each node programmatically.

Product Detail and Variants

get_product_details takes a product_url — either the full URL or just the path component like /product-name-and-id.html — and returns a detailed record. This includes an images array with multiple product image URLs, a variants array where each entry carries its own sku, price, price_formatted, is_buyable, and stock_info fields. This makes it possible to track availability across color, size, or storage variants without a separate call per variant.

Search Suggestions

get_search_suggestions accepts a partial query string and returns a suggestions array where each entry has a text label and a url. This mirrors the autocomplete behavior on the Jumia Ghana site and is useful for query expansion, spell-check hinting, or building search UIs that guide users toward terms likely to return results.

Reliability & maintenanceVerified

The Com API is a managed, monitored endpoint for jumia.com.gh — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when jumia.com.gh changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official jumia.com.gh API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
2d ago
Latest check
5/5 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Track price drops and discount percentages on specific products using old_price and discount fields from search_products.
  • Build a product availability monitor by polling get_product_details and checking is_buyable and stock_info across variant SKUs.
  • Aggregate category-level pricing data by iterating get_categories slugs and paginating through get_category_products.
  • Power an autocomplete search box with real Jumia Ghana suggestions via get_search_suggestions for partial query inputs.
  • Compare brand representation across categories by extracting the brand field from product listings across multiple category slugs.
  • Compile a product image dataset using the images array returned by get_product_details for catalog or ML training purposes.
  • Monitor rating trends over time by recording rating and total_ratings from search_products on a recurring schedule.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Jumia Ghana have an official public developer API?+
Jumia operates a seller-facing API for merchants (documented at developer.jumia.com), but it is restricted to registered marketplace sellers and does not offer public read access to product catalog, pricing, or category data for general developer use.
What does `get_product_details` return that the listing endpoints don't?+
The listing endpoints (search_products, get_category_products) return summary fields like name, price, rating, and discount. get_product_details adds a full images array with multiple image URLs, a variants array with per-variant sku, price_formatted, is_buyable, and stock_info, and the product id. Stock status at the variant level is only available through this endpoint.
Does the API expose seller information or seller ratings?+
Not currently. The product objects include buyer-facing fields like price, discount, rating, and variants, but individual seller names, seller ratings, or fulfillment details are not part of any response. You can fork the API on Parse and revise it to add a seller-focused endpoint if that data is available on the product page.
Are there any pagination limitations to be aware of?+
Both search_products and get_category_products return total_pages and total_products so you can iterate reliably. However, very broad queries or high-traffic categories may return large total_pages values. The API reflects what Jumia Ghana surfaces for a given page number, so pages beyond what the site indexes will return empty product arrays.
Does the API cover Jumia storefronts in other African countries, such as Nigeria or Kenya?+
No — this API is scoped exclusively to jumia.com.gh (Ghana). Nigeria, Kenya, Egypt, and other Jumia country storefronts are not covered. You can fork this API on Parse and revise it to point at a different Jumia country domain to add coverage for another market.
Page content last updated . Spec covers 5 endpoints from jumia.com.gh.
Related APIs in EcommerceSee all →
jumia.com.ng API
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.
jumia.co.ke API
Search and browse thousands of products on Jumia Kenya, view detailed product information and reviews, and discover flash sales and homepage deals all in one place. Filter by category, check product SKUs, and stay updated on the latest offers to find exactly what you're looking for.
jumia.ug API
Search and browse products from Jumia Uganda, view detailed product information including reviews and stock availability, and discover current flash sales across different categories and sellers. Filter products by category or seller to find exactly what you're looking for on Uganda's largest online marketplace.
jula.fi API
Search and browse products from Jula.fi to find hardware items with detailed information including prices (with and without VAT), stock availability, brand details, and product SKUs. Explore products by category or search for specific items to compare pricing and check real-time stock status.
ajio.com API
Search and browse products on Ajio.com to find exactly what you're looking for across categories, brands, new arrivals, and sales, with instant access to pricing, availability, and customer ratings. Discover detailed product information to compare options and make informed shopping decisions.
amazon.com API
Search and browse Amazon products, reviews, offers, and deals, then manage your shopping cart all through a single integration. Get detailed product information, seller profiles, and best sellers to compare prices and make informed purchasing decisions.
daraz.com.bd API
Search and browse products on Daraz Bangladesh to find items across any category. Retrieve detailed product information, explore category listings, and surface top-selling items — all from a single API.
juno.co.uk API
Search and browse Juno Records' catalog to find music across genres, discover new releases and bestsellers, and get detailed product information with autocomplete suggestions. Perfect for exploring vinyl, CDs, and digital music with real-time access to charts and recommendations.