电商企业信息

接口说明

  • 返回电商企业信息
  • 返回结果中包含 企业简要信息、Top5联系方式 及 企业的电商信息

API路径

/services/v4/rest/enterprise/entEcommerceInfo

请求方法

GET

请求参数

参数 类型 说明 示例
keywords string 必须,企业全称,企业唯一编码(pid)或统一信用代码,工商注册码 深圳市xx科技有限公司
module string 企业信息模块 BaseInfo
page int 分页参数-页码,默认为1,每页固定返回20条数据,目前只对 ECommerceShops 及 ECommerceProducts 模块有效

注:企业英文名称中需要完全匹配,其中可能包含特殊字符,需要先对参数进行URL编码再传递,防止特殊字符错漏

基本信息模块如下:

  • BaseInfo: 企业基本信息
  • Contacts: 企业联系方式-Top5
  • ECommerceShops: 企业电商店铺数据
  • ECommerceProducts: 企业电商商品数据

调用样例

https://{host}/services/v4/rest/enterprise/entEcommerceInfo?keywords=深圳市xx科技有限公司

返回结果JSON示例

{
    "error_code": 0,
    "success": true,
    "message": "",
    "data": {
        "BaseInfo": { // 企业基本信息
            "pid": "weewrfd234555", // 企业pid
            "ent_name": "sssss", // 企业名称
            "register_address": "xxxxx", // 注册地址
            "reg_province": "四川省", // 注册地址-省
            "reg_city": "成都市", // 注册地址-市
            "reg_district": "金牛区", // 注册地址-区
            "ent_status": "存续(在营、开业、在册)" // 经营状态
        },
        "Contacts": [ // 联系方式-top5
            {
                "content": "cqevhj@qq.com", // 联系方式内容
                "type": 3, // 联系方式类型:1-手机,2-固话,4-邮箱
                "person": "李*" // 联系人姓名
            },
            {
                "content": "125845656363", // 联系方式内容
                "type": 1, // 联系方式类型:1-手机,2-固话,4-邮箱
                "person": "张*" // 联系人姓名
            }
        ],
        "ECommerceShops": { // 电商数据
            "total": 20, // 网店总量
            "items": [ // 网店数据
                {
                    "shop_id": "cwqgvw3r12rd21e", // 网店id
                    "shop_name": "Linfen Baixiang Mining Equipment Co., Ltd.", // 网店名称
                    "platform": ["中国制造国际站"], // 网店所属平台
                    "product_count": 105, // 网店商品数量
                    "shop_url": "https://a7e6f8e14ee505bb.en.made-in-china.com/", // 网店url
                    "shop_status": "在营", // 网店状态
                    "country_site": null, // 网店所属国家站
                    "comment_count": 1546, // 网店评论量
                    "recent_comments": ["very good"], // 商品评论
                    "associated_time": "2026-03-06" // 网店关联企业的时间
                },
                {
                    "shop_id": "cwqgvwssd21e",
                    "shop_name": "安轩店",
                    "platform": ["亚马逊"],
                    "product_count": 105,
                    "shop_url": "https://www.amazon.co.jp/sp?seller=AB0MB2M9EQ5P6",
                    "shop_status": "在营",
                    "country_site": ["亚马逊日本站","亚马逊德国站"],
                    "comment_count": 1546,
                    "recent_comments": ["very good"],
                    "associated_time": "2026-03-06"
                }
            ]
        },
        "ECommerceProducts": {
            "total": 150, // 商品总量
            "items": [ // 商品数据
                {
                    "shop_id": "cwqgvw3r12rd21e", // 网店id
                    "shop_name": "Linfen Baixiang Mining Equipment Co., Ltd.", // 网店名称
                    "product_name": "Terrasse Garten Outdoor-Partys", // 商品名称
                    "product_price": "€8.09", // 商品价格
                    "product_sales": 1, // 商品销量
                    "recent_comments": ["very good"], // 商品评论
                    "product_category": "Outdoor Lighting > Pathway Lighting", // 商品类目
                    "product_url": "https://www.amazon.de/dp/B0FSF14S24?m=AHE&th=1" // 商品链接
                },
                {
                    "shop_id": "cwqgvw3r12rd21e",
                    "shop_name": "Linfen Baixiang Mining Equipment Co., Ltd.",
                    "product_name": "Wasserdichte Schaukelnde Feenlichter Dekoration Für Gruselige Weg Laternen Gehweg Terrasse Garten Outdoor-Partys",
                    "product_price": "€5.09",
                    "product_sales": 2,
                    "recent_comments": ["very good"], // 商品评论
                    "product_category": "Outdoor Lighting > Pathway Lighting",
                    "product_url": "https://www.amazon.de/dp/B0FSF14S24?m=A3E&th=1"
                }
            ]
        }
    }
}

当传入module为 ECommerceShops 时,只返回下面的数据,且受到page参数的控制

{
    "error_code": 0,
    "success": true,
    "message": "",
    "data": {
        "ECommerce": { // 电商数据
            "total": 22, // 网店总量
            "items": [ // 网店数据
                {
                    "shop_id": "cwqgvw3r12rd21e", // 网店id
                    "shop_name": "Linfen Baixiang Mining Equipment Co., Ltd.", // 网店名称
                    "platform": ["中国制造国际站"], // 网店所属平台
                    "product_count": 105, // 网店商品数量
                    "shop_url": "https://a7e6f8e14ee505bb.en.made-in-china.com/", // 网店url
                    "shop_status": "在营", // 网店状态
                    "country_site": null, // 网店所属国家站
                    "comment_count": 1546, // 网店评论量
                    "recent_comments": ["very good"], // 商品评论
                    "associated_time": "2026-03-06" // 网店关联企业的时间
                },
                {
                    "shop_id": "cwqgvw3r12rd21e",
                    "shop_name": "安轩店",
                    "platform": ["亚马逊"],
                    "product_count": 105,
                    "shop_url": "https://www.amazon.co.jp/sp?seller=AB0MB2M9EQ5P6",
                    "shop_status": "在营",
                    "country_site": ["亚马逊日本站","亚马逊德国站"],
                    "comment_count": 1546,
                    "recent_comments": ["very good"],
                    "associated_time": "2026-03-06"
                }
            ]
        }
    }
}

返回错误代码以及处理方式

code 处理方式 说明
2001 缺少必填参数 keywords不能为空
2002 修改参数 未查询到相关企业

错误代码参考 错误码定义

文档更新时间: 2026-03-13 09:18   作者:3413