加载中...

京东万象数据 API

有免费额度

提供商:京东万象

京东官方数据开放平台,提供电商数据、商品价格、评论分析、快递等多类目 API 服务。

电商数据商品信息价格查询REST

快速接入示例

cURL
curl -X GET "https://wx.jdcloud.com/market/api/home" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"
JavaScript / Node.js
const response = await fetch('https://wx.jdcloud.com/market/api/home', {
  method: 'GET',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json',
  },
});
const data = await response.json();
console.log(data);
Python
import requests

url = "https://wx.jdcloud.com/market/api/home"
headers = {
    "Authorization": "Bearer YOUR_API_KEY",
    "Content-Type": "application/json"
}

response = requests.get(url, headers=headers)
data = response.json()
print(data)