技术实战:Jumia API 商品详情接口技术解析与标准JSON返回参考
前言
Jumia作为非洲领先的电子商务平台,其API体系主要面向第三方卖家(Marketplace Sellers)、物流合作伙伴及企业级数据集成商开放。与成熟市场的电商平台相比,Jumia的API更侧重于多国家/地区适配、本地化支付状态同步以及复杂的跨境物流追踪。商品详情接口是构建比价工具、库存同步系统及竞品分析平台的核心数据源。
一、接口核心基础背景
Jumia开放平台(Jumia Open Platform)通常通过RESTful API提供数据服务,主要覆盖尼日利亚、肯尼亚、埃及、摩洛哥等核心市场。
鉴权机制:采用OAuth2.0 Client Credentials模式或API Key + Secret签名机制(HMAC-SHA256)。
区域化特性:请求时需指定country_code(如NG, KE, EG),因为同一SKU在不同国家的库存、价格及描述可能完全不同。
数据粒度:支持SPU(标准产品单位)和SKU(库存量单位)两级查询,建议优先使用SKU ID以获取精确库存和价格。
二、接口核心覆盖的数据范围
基础标识:Jumia SKU ID、Seller SKU(卖家自定义编码)、品牌、类目路径。
价格体系:当前售价、原价(划线价)、折扣率、货币单位(NGN, KES, EGP等)、
含税 状态。
库存与物流:实时库存数量、可售状态、预计发货时间、配送费用估算、仓库位置。
商品属性:标题、详细描述(HTML格式)、关键卖点(Bullet Points)、规格参数(颜色、尺寸、重量等)。
多媒体资源:主图、详情图数组、视频链接(如有)。
卖家信息:店铺名称、卖家评分、响应率、是否由Jumia Express(官方物流)配送。
三、最简接入操作步骤
注册开发者账号:访问Jumia Seller Center或开放平台门户,创建应用并获取Client ID和Client Secret。(测试:o0b.cn/anzexi)
获取Access Token:通过OAuth2.0接口换取access_token,有效期通常为1小时。
构造请求:使用HTTPS GET方法,传入SKU ID及国家代码,Header中携带Authorization: Bearer <token>。
处理响应:解析JSON数据,注意处理多语言字段(部分国家支持英语、法语、阿拉伯语)。
四、标准JSON返回参考示例
以下是基于Jumia业务场景模拟的标准商品详情返回结构,涵盖了非洲电商特有的多货币、多语言及物流字段:
{
"status": "success",
"code": 200,
"message": "Product details retrieved successfully",
"request_id": "jumia_req_20260916150001234",
"data": {
"sku_id": "JU-NG-88776655",
"seller_sku": "SELLER-ABC-001",
"product_name": "Samsung Galaxy A54 5G Smartphone - 8GB RAM, 256GB ROM - Awesome Graphite",
"brand": "Samsung",
"category_path": "Electronics > Mobile Phones > Android Phones",
"country_code": "NG",
"currency": "NGN",
"price_info": {
"current_price": 285000.00,
"original_price": 320000.00,
"discount_percentage": 11,
"tax_included": true,
"flash_sale_price": null
},
"stock_info": {
"quantity": 45,
"is_available": true,
"min_order_quantity": 1,
"max_order_quantity": 5
},
"logistics_info": {
"delivery_time_days": "2-4",
"shipping_fee": 1500.00,
"free_shipping_threshold": 50000.00,
"is_jumia_express": true,
"warehouse_location": "Lagos Mainland Hub"
},
"description": {
"short_description": "Experience the power of 5G with Samsung Galaxy A54.",
"full_description_html": "<p>Key Features:</p><ul><li>6.4-inch Super AMOLED Display</li><li>50MP Triple Camera</li><li>5000mAh Battery</li></ul>",
"bullet_points": [
"5G Connectivity for faster downloads",
"Long-lasting 5000mAh battery",
"IP67 Water and Dust Resistance"
]
},
"specifications": [
{"key": "Screen Size", "value": "6.4 inches"},
{"key": "RAM", "value": "8 GB"},
{"key": "Storage", "value": "256 GB"},
{"key": "Color", "value": "Awesome Graphite"},
{"key": "Warranty", "value": "12 Months Official Warranty"}
],
"media": {
"main_image": "https://ng.jumia.is/unsafe/fit-in/500x500/filters:fill(white)/product/88/776655/1.jpg",
"images": [
"https://ng.jumia.is/unsafe/fit-in/500x500/filters:fill(white)/product/88/776655/1.jpg",
"https://ng.jumia.is/unsafe/fit-in/500x500/filters:fill(white)/product/88/776655/2.jpg",
"https://ng.jumia.is/unsafe/fit-in/500x500/filters:fill(white)/product/88/776655/3.jpg"
],
"video_url": null
},
"seller_info": {
"seller_id": "SEL-12345",
"seller_name": "Samsung Official Store",
"seller_rating": 4.8,
"response_rate": "95%",
"is_verified": true
}
}
}