商品运费查询
POST
/taobao/traffic/item/logisticPrice/get
请求参数
Body 参数application/json
appKey
string
必需
appSecret
string
必需
item_id
string
淘宝商品ID
address_info
string
必需
示例
{
"appKey": "",
"appSecret": "",
"item_id": "703446760426",
"address_info": "{country: '中国', city: '杭州市', district: '余杭区', state: '浙江省'}"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://openapi.dajisaas.com/taobao/traffic/item/logisticPrice/get' \
--header 'Content-Type: application/json' \
--data-raw '{
"appKey": "",
"appSecret": "",
"item_id": "703446760426",
"address_info": "{country: '\''中国'\'', city: '\''杭州市'\'', district: '\''余杭区'\'', state: '\''浙江省'\''}"
}'
返回响应
🟢200成功
application/json
Body
code
integer
返回码
message
string
消息
data
object
业务数据
itemId
integer
商品id
itemResource
string
商品来源
postFee
integer
中国段运费
currency
string
币种
timestamp
integer
时间戳
traceId
string
traceId
示例
{
"code": 200,
"message": "操作成功",
"data": {
"itemId": 703446760426,
"itemResource": "taobao",
"postFee": 0,
"currency": "CNY"
},
"timestamp": 1726750066693,
"traceId": "ed24bad4c393"
}

修改于 2024-09-23 12:36:44