opentaobao

package module
v1.2.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 1, 2021 License: Apache-2.0 Imports: 0 Imported by: 0

README

淘宝开放平台 golang SDK

Go Reference Go goreleaser GitHub go.mod Go version of a Go module GoReportCard

编译工具链

make tools
  • 在bin目录下会生成downloader和generator两个可执行文件
  • 因为使用embed特性,编译downloder和generator需要golang版本>= 1.16

下载淘宝开放平台ApiMetadata

./bin/downloader -meta=./metadata/assets/json
downloader 参数
  • meta: 下载metadata目录
  • pkg: 指定下载特定包,如:-pkg=user, 仅下载"用户API"

根据metadata生成API Golang SDK

./bin/generator -meta=./metadata/assets/json -patch=./metadata/assets/patch
generator 参数
  • meta: metadata文件所在目录
  • patch: metadata patch文件所在目录
  • pkg: 指定生成特定API包
API 调用
package main

import (
    "log"

    "github.com/bububa/opentaobao/core"
    userModel "github.com/bububa/opentaobao/model/user"
    userApi "github.com/bububa/opentaobao/api/user"
)

func main() {
    clt := core.NewSDKClient(APP_KEY, APP_SECRET)
    req := userModel.NewTaobaoUserAvatarGetRequest()
    req.SetNick("nick")
    resp, err := userApi.TaobaoUserAvatarGet(clt, req)
    if err != nil {
        log.Fatalln(err)
    }
    log.Printf("%+v\n", resp)
}

常见问题

API分包

为避免生成最终目录内文件过多,以及命名空间冲突问题,根据淘宝开放平台API分类原则对API分包。 分包设置在metadata/assets/package.json,"pkg"参数即为API包名,与"id"(API树节点ID)对应。 下载的metadata如果在package.json无法找到对应的包则不会下载保存。

字段类型映射
淘宝字段类型 go SDK 类型
Number int64
Price float64
Boolean bool
String string
Date string
Json string
Field List []string
其他 struct指针
  • 如果字段类型后带"[]", 则转换为slice
  • 如果字段UsePointer=true, 则转换为指针
  • 同一保重struct名称一样会对struct成员进行合并

淘宝API中对象命名空间非常混乱,即使在同一包中仍然会出现struct冲突的情况。如果出现struct命名空间冲突有两种解决办法:

  • 修改metadata/assets/conflict_models.json文件,增加可能冲突的struct名。generator会对该struct前增加API名进行重命名,比如 AlibabaWdkFinanceOrderBackflow API中的ApiResult会被重命名为AlibabaWdkFinanceOrderBackflowApiResult
  • 也可增加对应的patch文件修改字段的Type。generator在生成API时会先查找对应的API有没有patch,如果有patch则使用patch文件替换metadata文件
缺少特定API

对于无法通过downloader下载的API metaddata, 可以参照已下载metadata文件在patch目录自行添加相应的metadata, generator会生成相应的API。

API 列表

淘宝API分类 对应SDK package
[x] 用户API github.com/bububa/opentaobao/api/user
[x] 类目API github.com/bububa/opentaobao/api/category
[x] 商品API github.com/bububa/opentaobao/api/product
[x] 交易API github.com/bububa/opentaobao/api/trade
[x] 评价API github.com/bububa/opentaobao/api/traderate
[x] 物流API github.com/bububa/opentaobao/api/logistic
[x] 店铺API github.com/bububa/opentaobao/api/shop
[x] 分销API github.com/bububa/opentaobao/api/fenxiao
[x] 旺旺API github.com/bububa/opentaobao/api/wangwang
[x] 淘宝客API github.com/bububa/opentaobao/api/tbk
[x] 工具API github.com/bububa/opentaobao/api/util
[x] 物流宝API github.com/bububa/opentaobao/api/wlb
[x] 直通车API github.com/bububa/opentaobao/api/simba
[x] 机票API github.com/bububa/opentaobao/api/flight
[x] ONS消息服务 github.com/bububa/opentaobao/api/jms
[x] 营销API github.com/bububa/opentaobao/api/promotion
[x] 数据API github.com/bububa/opentaobao/api/dt
[x] 酒店API github.com/bububa/opentaobao/api/xhotel
[x] 聚划算API github.com/bububa/opentaobao/api/ju
[x] 店铺会员管理API github.com/bububa/opentaobao/api/crm
[x] 多媒体平台API github.com/bububa/opentaobao/api/media
[x] 子账号管理API github.com/bububa/opentaobao/api/subuser
[x] 服务平台API github.com/bububa/opentaobao/api/servicecenter
[x] 退款API github.com/bububa/opentaobao/api/refund
[x] 质检品控API github.com/bububa/opentaobao/api/qt
[x] 天猫服务商品API github.com/bububa/opentaobao/api/tmallservice
[x] 天猫精品库API github.com/bububa/opentaobao/api/tmallitem
[x] 聚石塔API github.com/bububa/opentaobao/api/jst
[x] 电子物流API github.com/bububa/opentaobao/api/eticket
[x] 彩票API github.com/bububa/opentaobao/api/caipiao
[x] 账务API github.com/bububa/opentaobao/api/bill
[x] 拍卖API github.com/bububa/opentaobao/api/paimai
[x] 千牛接口 github.com/bububa/opentaobao/api/qianniu
[x] 消息服务API github.com/bububa/opentaobao/api/tmc
[x] 本地生活API github.com/bububa/opentaobao/api/alsc
[x] 阿里云ocsAPI github.com/bububa/opentaobao/api/aliyunocs
[x] 淘宝同城API github.com/bububa/opentaobao/api/cityretail
[x] YunOS github.com/bububa/opentaobao/api/yunos
[x] 阿里云API github.com/bububa/opentaobao/api/aliyun
[x] 火车票API github.com/bububa/opentaobao/api/train
[x] Tanx API github.com/bububa/opentaobao/api/tanx
[x] 手淘开放API github.com/bububa/opentaobao/api/mtopopen
[x] JAE github.com/bububa/opentaobao/api/jae
[x] 宝点API github.com/bububa/opentaobao/api/baodian
[x] 天猫会员积分 github.com/bububa/opentaobao/api/tmallcms
[x] 汽车票API github.com/bububa/opentaobao/api/bus
[x] 码上淘API github.com/bububa/opentaobao/api/ma
[x] 游戏激励平台API github.com/bububa/opentaobao/api/gameact
[x] 淘宝抽奖平台API github.com/bububa/opentaobao/api/choujiang
[x] 天猫国际API github.com/bububa/opentaobao/api/tmallhk
[x] 司法拍卖 github.com/bububa/opentaobao/api/auction
[x] 虾米API github.com/bububa/opentaobao/api/xiami
[x] 天猫互动接口 github.com/bububa/opentaobao/api/interact
[x] DMP API github.com/bububa/opentaobao/api/dmp
[x] 生活服务API github.com/bububa/opentaobao/api/lifeservice
[x] 手机淘宝API github.com/bububa/opentaobao/api/mtop
[x] 物联API github.com/bububa/opentaobao/api/alink
[x] 酒店导购API github.com/bububa/opentaobao/api/hotel
[x] 保险API github.com/bububa/opentaobao/api/baoxian
[x] 天猫美妆API github.com/bububa/opentaobao/api/mei
[x] 会员卡 github.com/bububa/opentaobao/api/blackvip
[x] 电子面单API github.com/bububa/opentaobao/api/waybill
[x] 电影票API github.com/bububa/opentaobao/api/film
[x] 阿里通信API github.com/bububa/opentaobao/api/alicom
[x] openimAPI github.com/bububa/opentaobao/api/openim
[x] 阿里车联网API github.com/bububa/opentaobao/api/autonavi
[x] 虚拟院线API github.com/bububa/opentaobao/api/taotv
[x] 知识库API github.com/bububa/opentaobao/api/kclub
[x] 反欺诈风控API github.com/bububa/opentaobao/api/antifraud
[x] 国际站外贸直通车API github.com/bububa/opentaobao/api/scbp
[x] 天猫服务数据API github.com/bububa/opentaobao/api/tmallsc
[x] 智能设备 github.com/bububa/opentaobao/api/iot
[x] 百川 github.com/bububa/opentaobao/api/baichuan
[x] 文本算法API github.com/bububa/opentaobao/api/nlp
[x] 百川推送 github.com/bububa/opentaobao/api/cloudpush
[x] 国际站商品API github.com/bububa/opentaobao/api/icbu
[x] 淘宝游戏API github.com/bububa/opentaobao/api/game
[x] 聚安全API github.com/bububa/opentaobao/api/security
[x] 喵街API github.com/bububa/opentaobao/api/mos
[x] 菜鸟配送API github.com/bububa/opentaobao/api/cntms
[x] 菜鸟仓配API github.com/bububa/opentaobao/api/wms
[x] 网上法庭对外API github.com/bububa/opentaobao/api/nazca
[x] 五道口API github.com/bububa/opentaobao/api/wdk
[x] 阿里大于API github.com/bububa/opentaobao/api/aliqin
[x] 淘宝内容API github.com/bububa/opentaobao/api/beehive
[x] 旅行用车API github.com/bububa/opentaobao/api/car
[x] 门票-商品管理API github.com/bububa/opentaobao/api/ticket
[x] 菜鸟无线API github.com/bububa/opentaobao/api/guoguo
[x] 奇门仓储API github.com/bububa/opentaobao/api/qimen
[x] yunos推送服务api github.com/bububa/opentaobao/api/cmns
[x] 生活汇API github.com/bububa/opentaobao/api/elife
[x] tv支付 github.com/bububa/opentaobao/api/tvpay
[x] 菜鸟集货API github.com/bububa/opentaobao/api/wlbimports
[x] 阿里健康医 github.com/bububa/opentaobao/api/alihealth
[x] 地动仪 github.com/bububa/opentaobao/api/lbs
[x] 阿里健康药API github.com/bububa/opentaobao/api/drug
[x] 手淘分享 github.com/bububa/opentaobao/api/wirelessshare
[x] 法务诉讼对外API github.com/bububa/opentaobao/api/legalcase
[x] 度假-商品管理API github.com/bububa/opentaobao/api/travel
[x] 酒店商品API github.com/bububa/opentaobao/api/xhotelitem
[x] 酒店在线预订API github.com/bububa/opentaobao/api/xhotelonlineorder
[x] 酒店官网信用住API github.com/bububa/opentaobao/api/xhotelofficial
[x] 酒店线下信用住API github.com/bububa/opentaobao/api/xhoteloffline
[x] 全渠道API github.com/bububa/opentaobao/api/omniorder
[x] 国际机票政策API github.com/bububa/opentaobao/api/itpolicy
[x] 国际机票订单API github.com/bububa/opentaobao/api/ieagency
[x] 国内机票订单API github.com/bububa/opentaobao/api/jipiao
[x] 度假&门票-交易管理API github.com/bububa/opentaobao/api/traveltrade
[x] 阿里体育API github.com/bububa/opentaobao/api/alisports
[x] 电子发票 github.com/bububa/opentaobao/api/einvoice
[x] 阿里翻译API github.com/bububa/opentaobao/api/seaking
[x] 国际站数据管 github.com/bububa/opentaobao/api/mydata
[x] tmall-carcenter github.com/bububa/opentaobao/api/tmallcarenter
[x] 阿里妈妈广告中心API github.com/bububa/opentaobao/api/scs
[x] Yunos Account API github.com/bububa/opentaobao/api/yunosaccount
[x] 菜鸟裹裹API github.com/bububa/opentaobao/api/cainiaolocker
[x] 度假-签证管理API github.com/bububa/opentaobao/api/normalvisa
[x] 菜鸟农村物流 github.com/bububa/opentaobao/api/cainiaoncwl
[x] 体检机构API github.com/bububa/opentaobao/api/examination
[x] 1688推客API github.com/bububa/opentaobao/api/tuike
[x] 商户API github.com/bububa/opentaobao/api/store
[x] 桌面API github.com/bububa/opentaobao/api/ott
[x] 电动车API github.com/bububa/opentaobao/api/vms
[x] 新零售API github.com/bububa/opentaobao/api/newretail
[x] SCM API github.com/bububa/opentaobao/api/ascm
[x] 百川-ctg github.com/bububa/opentaobao/api/baichuanctg
[x] 汇金API github.com/bububa/opentaobao/api/fundplatform
[x] 数娱媒资输出 github.com/bububa/opentaobao/api/wenyuvideo
[x] 商旅API github.com/bububa/opentaobao/api/btrip
[x] 零售plus github.com/bububa/opentaobao/api/nlife
[x] 天猫门店API github.com/bububa/opentaobao/api/retail
[x] AILAB图像算法API github.com/bububa/opentaobao/api/aiar
[x] 天猫供应 github.com/bububa/opentaobao/api/ascp
[x] 欢行开发平台API github.com/bububa/opentaobao/api/happytrip
[x] 跨境API github.com/bububa/opentaobao/api/oversea
[x] 迎客松牌照审核接口 github.com/bububa/opentaobao/api/tvupadmin
[x] IoTI API github.com/bububa/opentaobao/api/ioti
[x] 淘宝卡券平台 github.com/bububa/opentaobao/api/deliveryvoucher
[x] 智慧门店 github.com/bububa/opentaobao/api/smartstore
[x] 淘宝定制行业API github.com/bububa/opentaobao/api/customizemarket
[x] 闲鱼 github.com/bububa/opentaobao/api/idle
[x] 库存API github.com/bububa/opentaobao/api/inventory
[x] aliExpress github.com/bububa/opentaobao/api/aliexpress
[x] YunOS-广告 github.com/bububa/opentaobao/api/yunosad
[x] 司法开放平台 github.com/bububa/opentaobao/api/legalsuit
[x] 全球速卖通 github.com/bububa/opentaobao/api/aliexpresssumaitong
[x] 阿里健康追溯码 github.com/bububa/opentaobao/api/drugtrace
[x] 会员中心API github.com/bububa/opentaobao/api/interactvip
[x] 阿里健康-会员管理 github.com/bububa/opentaobao/api/alihealthcrm
[x] 品效API github.com/bububa/opentaobao/api/brandhub
[x] 小蜜API github.com/bububa/opentaobao/api/alime
[x] 大麦票务云分销API github.com/bububa/opentaobao/api/maitix
[x] 天猫精灵开放API github.com/bububa/opentaobao/api/tmallgenie
[x] ICBU卖家API github.com/bububa/opentaobao/api/icbuseller
[x] 智慧园区API github.com/bububa/opentaobao/api/campus
[x] 酒店会员API github.com/bububa/opentaobao/api/xhotelcrm
[x] 大麦API github.com/bububa/opentaobao/api/damai
[x] 换货API github.com/bububa/opentaobao/api/exchange
[x] 商家营销中心API github.com/bububa/opentaobao/api/singletreasure
[x] ICBU-物流 github.com/bububa/opentaobao/api/icbulogistics
[x] ICBU-RFQ github.com/bububa/opentaobao/api/icburfq
[x] ICBU-信保 github.com/bububa/opentaobao/api/icbuassurance
[x] 飞猪POI数据API github.com/bububa/opentaobao/api/alitrippoi
[x] 飞猪行政区划API github.com/bububa/opentaobao/api/alitripdivisions
[x] 零售终端API github.com/bububa/opentaobao/api/nrt
[x] 手淘用户增 github.com/bububa/opentaobao/api/usergrowth
[x] ALiOS应用中心 github.com/bububa/opentaobao/api/yunosappstore
[x] b2b认证平台api github.com/bububa/opentaobao/api/b2bcert
[x] 企业运营平台-集团财 github.com/bububa/opentaobao/api/fpm
[x] 零售通智能POS开放 github.com/bububa/opentaobao/api/lstpos
[x] 阿里巴巴供应链平台API github.com/bububa/opentaobao/api/ascpqcc
[x] 天猫新零售 github.com/bububa/opentaobao/api/tmallnr
[x] 酒店团购套餐API github.com/bububa/opentaobao/api/tuanhotel
[x] 阿里影业云智API github.com/bububa/opentaobao/api/larkiot
[x] 渠道中心API github.com/bububa/opentaobao/api/tmallchannel
[x] 阿里健康-疫苗API github.com/bububa/opentaobao/api/vaccin
[x] 教育账号 API github.com/bububa/opentaobao/api/yunosdm
[x] 用户增长 github.com/bububa/opentaobao/api/usergrowth2
[x] AE-供应链 github.com/bububa/opentaobao/api/ascpffo
[x] 互动吧API github.com/bububa/opentaobao/api/fans
[x] 飞猪机票前台类目 github.com/bububa/opentaobao/api/flightuppc
[x] 平台治理API github.com/bububa/opentaobao/api/sungari
[x] 天猫超市前台API github.com/bububa/opentaobao/api/txcs
[x] 虾米开放平台 github.com/bububa/opentaobao/api/xiamiopen
[x] 阿里健康医生 github.com/bububa/opentaobao/api/alihealthoutflow
[x] 飞猪酒店标准库 github.com/bububa/opentaobao/api/hotelhstdf
[x] AE-Dropshipper github.com/bububa/opentaobao/api/aedropshiper
[x] 银泰scm-openapi github.com/bububa/opentaobao/api/moscm
[x] 信息平台-采购 github.com/bububa/opentaobao/api/pur
[x] 零售通自动售货机 github.com/bububa/opentaobao/api/lstvending
[x] 淘宝小程序API github.com/bububa/opentaobao/api/miniapp
[x] ott支付 github.com/bububa/opentaobao/api/ottpay
[x] 天猫汽车 github.com/bububa/opentaobao/api/tmallcar
[x] ALIOS广告平台 github.com/bububa/opentaobao/api/admarket
[x] 业务平台新零售 github.com/bububa/opentaobao/api/uscesl
[x] 大麦第三方商家接入API github.com/bububa/opentaobao/api/damaiticklet
[x] ICBU商品api github.com/bububa/opentaobao/api/icbuproduct
[x] 神鲸应用API github.com/bububa/opentaobao/api/shenjing
[x] 阿里影业灯塔 github.com/bububa/opentaobao/api/dengta
[x] 激励API github.com/bububa/opentaobao/api/degoperation
[x] 优酷-媒资 github.com/bububa/opentaobao/api/youkuott
[x] 优酷网盟 github.com/bububa/opentaobao/api/youkudsp
[x] 阿里健康API github.com/bububa/opentaobao/api/alihealth2
[x] 新制造API github.com/bububa/opentaobao/api/rhino
[x] 零售通小店智能设备 github.com/bububa/opentaobao/api/lstspeacker
[x] 医知鹿-视频 github.com/bububa/opentaobao/api/alihealthmdeer
[x] 五道口商品API github.com/bububa/opentaobao/api/wdkitem
[x] 零售通订单履行 github.com/bububa/opentaobao/api/lstlogistics
[x] 天猫线下大屏 github.com/bububa/opentaobao/api/tmallfcbox
[x] AE-Oversea-Solution github.com/bububa/opentaobao/api/aesolution
[x] 阿里精灵基础能力接口 github.com/bububa/opentaobao/api/aligenie
[x] 阿里健康新零售 github.com/bububa/opentaobao/api/healthnr
[x] 闲鱼发布 github.com/bububa/opentaobao/api/idleitem
[x] 飞猪酒店签约中心 github.com/bububa/opentaobao/api/hotelalliance
[x] 人工智能实验室开放平台API github.com/bububa/opentaobao/api/alilabs
[x] 天猫新品创新中心API github.com/bububa/opentaobao/api/tmic
[x] MOZI账号API github.com/bububa/opentaobao/api/mozi
[x] 亲橙里westcrmAPI github.com/bububa/opentaobao/api/westcrm
[x] ICBU-橱 github.com/bububa/opentaobao/api/icbushowcase
[x] 云码API github.com/bububa/opentaobao/api/mc
[x] HOMEAI github.com/bububa/opentaobao/api/homeai
[x] MOZI权限API github.com/bububa/opentaobao/api/moziacl
[x] 飞猪商家平台 github.com/bububa/opentaobao/api/alitripmerchant
[x] 新零售POS github.com/bububa/opentaobao/api/nrpos
[x] 资质共享API github.com/bububa/opentaobao/api/fivee
[x] 业务平台事业部-税务平台API github.com/bububa/opentaobao/api/tax
[x] MOZI 租户 github.com/bububa/opentaobao/api/mozivds
[x] 公益三小时公共 github.com/bububa/opentaobao/api/charity
[x] 脚模API github.com/bububa/opentaobao/api/foodscan
[x] 阿里健康处方药平台 github.com/bububa/opentaobao/api/alidoc
[x] 优酷播控幻影API github.com/bububa/opentaobao/api/mirage
[x] miniapp开放API github.com/bububa/opentaobao/api/miniappopen
[x] 天天特价 github.com/bububa/opentaobao/api/tttm
[x] iHome API github.com/bububa/opentaobao/api/ihome
[x] 信息流API github.com/bububa/opentaobao/api/feedflow
[x] 淘宝C2M github.com/bububa/opentaobao/api/c2m
[x] 新零售供应链API github.com/bububa/opentaobao/api/ascpchannel
[x] AliOS支付API github.com/bububa/opentaobao/api/aliospay
[x] 菜鸟控制塔API github.com/bububa/opentaobao/api/cainiaoecc
[x] 小程序API github.com/bububa/opentaobao/api/yunosminiapp
[x] 菜鸟末端商业 github.com/bububa/opentaobao/api/cainiaocntec
[x] 阿里健康挂号号源直连 github.com/bububa/opentaobao/api/medicalbase
[x] AE-UserOpen-Recommend github.com/bububa/opentaobao/api/aeusergrowth
[x] Efficient Tools github.com/bububa/opentaobao/api/aetools
[x] Data Reports github.com/bububa/opentaobao/api/aedata
[x] Promotion Creatives github.com/bububa/opentaobao/api/aecreatives
[x] 菜鸟国际出口 github.com/bububa/opentaobao/api/cainiaohandover
[x] 全域会员通 github.com/bububa/opentaobao/api/alimember
[x] 交易猫API github.com/bububa/opentaobao/api/jym
[x] 影城自运营开放Api github.com/bububa/opentaobao/api/filmtfavatar
[x] 商家应用 github.com/bububa/opentaobao/api/miniappcloud
[x] 国际火车票API github.com/bububa/opentaobao/api/rail
[x] 天猫校园API github.com/bububa/opentaobao/api/tmallcampus
[x] 消息API github.com/bububa/opentaobao/api/alimsg
[x] 菜鸟发货工作台API github.com/bububa/opentaobao/api/consignplatform
[x] 五道口-物流-自提API github.com/bububa/opentaobao/api/wdklogistics
[x] 企业订餐员工API github.com/bububa/opentaobao/api/eleenterpriseemployee
[x] 船票API github.com/bububa/opentaobao/api/ship
[x] 飞猪-综合交通api github.com/bububa/opentaobao/api/alitripcar
[x] 企业订餐店铺接口 github.com/bububa/opentaobao/api/eleenterpriserestaurant
[x] 新零售开放API github.com/bububa/opentaobao/api/nropen
[x] 企业订餐购物车API github.com/bububa/opentaobao/api/eleenterprisecartnew
[x] 企业订餐优惠券API github.com/bububa/opentaobao/api/eleenterprisecoupon
[x] 阿里健康算法 github.com/bububa/opentaobao/api/alihealthalgo
[x] 企业订餐订单API github.com/bububa/opentaobao/api/eleenterpriseordernew
[x] 云游戏API github.com/bububa/opentaobao/api/cloudgame
[x] 国际虚拟API github.com/bububa/opentaobao/api/globalvirtual
[x] 交易开放 github.com/bububa/opentaobao/api/opentrade
[x] 本地生活商户基础API github.com/bububa/opentaobao/api/alscmerchant
[x] 消息amp通道 github.com/bububa/opentaobao/api/msgamp
[x] 口碑综合体API github.com/bububa/opentaobao/api/koubeimall
[x] IoT售后解决方案API github.com/bububa/opentaobao/api/iotticket
[x] OpenMall-API github.com/bububa/opentaobao/api/openmall
[x] 视觉开放API(viapi) github.com/bububa/opentaobao/api/viapi
[x] 曲库开放平台歌曲API github.com/bububa/opentaobao/api/xiamicontent
[x] 阿里健康三方机构 github.com/bububa/opentaobao/api/alihealthmedical
[x] 阿里健康-检测检验-预约 github.com/bububa/opentaobao/api/alihealthlab
[x] 天猫精灵供应链网关API github.com/bububa/opentaobao/api/tmallgeniescp
[x] 曲库开放平台TraceAPI github.com/bububa/opentaobao/api/xiamitrace
[x] 飞猪发票 github.com/bububa/opentaobao/api/alitripreceipt
[x] 互动开放API github.com/bububa/opentaobao/api/jstinteractive
[x] 同城零售全渠道 github.com/bububa/opentaobao/api/perfect
[x] 天猫好房工具API github.com/bububa/opentaobao/api/alihouse
[x] 五棱镜任务API github.com/bububa/opentaobao/api/pentraprism
[x] 闲鱼兼职 github.com/bububa/opentaobao/api/idleparttime
[x] 聚石塔隐私号 github.com/bububa/opentaobao/api/jstsecret
[x] 零售通商品API github.com/bububa/opentaobao/api/lsticitem
[x] 零售通交易API github.com/bububa/opentaobao/api/lsttrade
[x] 零售通门店API github.com/bububa/opentaobao/api/lstbm
[x] 零售通履单API github.com/bububa/opentaobao/api/lstlogistics2
[x] 零售通仓储API github.com/bububa/opentaobao/api/lstwarehouse
[x] 零售通结算API github.com/bububa/opentaobao/api/lstfundbill
[x] 零售通营销API github.com/bububa/opentaobao/api/lstmarketing
[x] AE任务开放平台 github.com/bububa/opentaobao/api/aetask
[x] 本地生活内容API github.com/bububa/opentaobao/api/kbalgo
[x] 天猫新品平台API github.com/bububa/opentaobao/api/tmalltrend
[x] 国际化中台服务域保险 github.com/bububa/opentaobao/api/middleclaims
[x] 阿里健康-健康证 github.com/bububa/opentaobao/api/alihealthcert
[x] 隐私保护API github.com/bububa/opentaobao/api/topoaid
[x] ICBU-DropShipping github.com/bububa/opentaobao/api/icbudropshipping
[x] 曲库开放平台艺人API github.com/bububa/opentaobao/api/xiamiatrist
[x] 周期购API github.com/bububa/opentaobao/api/zqs
[x] 闲鱼已验货 github.com/bububa/opentaobao/api/idleisv
[x] 阿信-交易API github.com/bububa/opentaobao/api/axintrade
[x] 飞猪商业化API github.com/bububa/opentaobao/api/alitripbp
[x] 阿信-基础数据 github.com/bububa/opentaobao/api/axindata
[x] 阿里健康公益线API github.com/bububa/opentaobao/api/alihealthpw
[x] 海南离岛对外API github.com/bububa/opentaobao/api/dutyfree

Documentation

Overview

淘宝开放平台 Golang SDK

Index

Constants

View Source
const (
	GitVersion = "v1.2.0"
	GitCommit  = "22cc48462"
	GitDate    = "<no value>"
	GitBuiltBy = "unknown"
)

Variables

This section is empty.

Functions

This section is empty.

Types

This section is empty.

Directories

Path Synopsis
api
API 请求方法
API 请求方法
admarket
ALIOS广告平台 https://open.taobao.com/API.htm?docId=37669&docType=2
ALIOS广告平台 https://open.taobao.com/API.htm?docId=37669&docType=2
aecreatives
Promotion Creatives https://open.taobao.com/API.htm?docId=45801&docType=2
Promotion Creatives https://open.taobao.com/API.htm?docId=45801&docType=2
aedata
Data Reports https://open.taobao.com/API.htm?docId=45807&docType=2
Data Reports https://open.taobao.com/API.htm?docId=45807&docType=2
aedropshiper
AE-Dropshipper https://open.taobao.com/API.htm?docId=39371&docType=2
AE-Dropshipper https://open.taobao.com/API.htm?docId=39371&docType=2
aesolution
AE-Oversea-Solution https://open.taobao.com/API.htm?docId=47378&docType=2
AE-Oversea-Solution https://open.taobao.com/API.htm?docId=47378&docType=2
aetask
AE任务开放平台 https://open.taobao.com/API.htm?docId=53415&docType=2
AE任务开放平台 https://open.taobao.com/API.htm?docId=53415&docType=2
aetools
Efficient Tools https://open.taobao.com/API.htm?docId=45804&docType=2
Efficient Tools https://open.taobao.com/API.htm?docId=45804&docType=2
aeusergrowth
AE-UserOpen-Recommend https://open.taobao.com/API.htm?docId=45722&docType=2
AE-UserOpen-Recommend https://open.taobao.com/API.htm?docId=45722&docType=2
aiar
AILAB图像算法API https://open.taobao.com/API.htm?docId=37057&docType=2
AILAB图像算法API https://open.taobao.com/API.htm?docId=37057&docType=2
alicom
阿里通信API https://open.taobao.com/API.htm?docId=29701&docType=2
阿里通信API https://open.taobao.com/API.htm?docId=29701&docType=2
alidoc
阿里健康处方药平台 https://open.taobao.com/API.htm?docId=44810&docType=2
阿里健康处方药平台 https://open.taobao.com/API.htm?docId=44810&docType=2
aliexpress
aliExpress https://open.taobao.com/API.htm?docId=54728&docType=2
aliExpress https://open.taobao.com/API.htm?docId=54728&docType=2
aliexpresssumaitong
全球速卖通 https://open.taobao.com/API.htm?docId=56229&docType=2
全球速卖通 https://open.taobao.com/API.htm?docId=56229&docType=2
aligenie
阿里精灵基础能力接口 https://open.taobao.com/API.htm?docId=39668&docType=2
阿里精灵基础能力接口 https://open.taobao.com/API.htm?docId=39668&docType=2
alihealth
阿里健康医 https://open.taobao.com/API.htm?docId=42645&docType=2
阿里健康医 https://open.taobao.com/API.htm?docId=42645&docType=2
alihealth2
阿里健康API https://open.taobao.com/API.htm?docId=43381&docType=2
阿里健康API https://open.taobao.com/API.htm?docId=43381&docType=2
alihealthalgo
阿里健康算法 https://open.taobao.com/API.htm?docId=48492&docType=2
阿里健康算法 https://open.taobao.com/API.htm?docId=48492&docType=2
alihealthcert
阿里健康-健康证 https://open.taobao.com/API.htm?docId=54140&docType=2
阿里健康-健康证 https://open.taobao.com/API.htm?docId=54140&docType=2
alihealthcrm
阿里健康-会员管理 https://open.taobao.com/API.htm?docId=46804&docType=2
阿里健康-会员管理 https://open.taobao.com/API.htm?docId=46804&docType=2
alihealthlab
阿里健康-检测检验-预约 https://open.taobao.com/API.htm?docId=51444&docType=2
阿里健康-检测检验-预约 https://open.taobao.com/API.htm?docId=51444&docType=2
alihealthmdeer
医知鹿-视频 https://open.taobao.com/API.htm?docId=46849&docType=2
医知鹿-视频 https://open.taobao.com/API.htm?docId=46849&docType=2
alihealthmedical
阿里健康三方机构 https://open.taobao.com/API.htm?docId=51290&docType=2
阿里健康三方机构 https://open.taobao.com/API.htm?docId=51290&docType=2
alihealthoutflow
阿里健康医生 https://open.taobao.com/API.htm?docId=43570&docType=2
阿里健康医生 https://open.taobao.com/API.htm?docId=43570&docType=2
alihealthpw
阿里健康公益线API https://open.taobao.com/API.htm?docId=56009&docType=2
阿里健康公益线API https://open.taobao.com/API.htm?docId=56009&docType=2
alihouse
天猫好房工具API https://open.taobao.com/API.htm?docId=56032&docType=2
天猫好房工具API https://open.taobao.com/API.htm?docId=56032&docType=2
alilabs
人工智能实验室开放平台API https://open.taobao.com/API.htm?docId=45531&docType=2
人工智能实验室开放平台API https://open.taobao.com/API.htm?docId=45531&docType=2
alime
小蜜API https://open.taobao.com/API.htm?docId=44065&docType=2
小蜜API https://open.taobao.com/API.htm?docId=44065&docType=2
alimember
全域会员通 https://open.taobao.com/API.htm?docId=46937&docType=2
全域会员通 https://open.taobao.com/API.htm?docId=46937&docType=2
alimsg
消息API https://open.taobao.com/API.htm?docId=56166&docType=2
消息API https://open.taobao.com/API.htm?docId=56166&docType=2
alink
物联API https://open.taobao.com/API.htm?docId=28313&docType=2
物联API https://open.taobao.com/API.htm?docId=28313&docType=2
aliospay
AliOS支付API https://open.taobao.com/API.htm?docId=45261&docType=2
AliOS支付API https://open.taobao.com/API.htm?docId=45261&docType=2
aliqin
阿里大于API https://open.taobao.com/API.htm?docId=28647&docType=2
阿里大于API https://open.taobao.com/API.htm?docId=28647&docType=2
alisports
阿里体育API https://open.taobao.com/API.htm?docId=41267&docType=2
阿里体育API https://open.taobao.com/API.htm?docId=41267&docType=2
alitripbp
飞猪商业化API https://open.taobao.com/API.htm?docId=55665&docType=2
飞猪商业化API https://open.taobao.com/API.htm?docId=55665&docType=2
alitripcar
飞猪-综合交通api https://open.taobao.com/API.htm?docId=53101&docType=2
飞猪-综合交通api https://open.taobao.com/API.htm?docId=53101&docType=2
alitripdivisions
飞猪行政区划API https://open.taobao.com/API.htm?docId=31375&docType=2
飞猪行政区划API https://open.taobao.com/API.htm?docId=31375&docType=2
alitripmerchant
飞猪商家平台 https://open.taobao.com/API.htm?docId=54748&docType=2
飞猪商家平台 https://open.taobao.com/API.htm?docId=54748&docType=2
alitrippoi
飞猪POI数据API https://open.taobao.com/API.htm?docId=45315&docType=2
飞猪POI数据API https://open.taobao.com/API.htm?docId=45315&docType=2
alitripreceipt
飞猪发票 https://open.taobao.com/API.htm?docId=51546&docType=2
飞猪发票 https://open.taobao.com/API.htm?docId=51546&docType=2
aliyun
阿里云API https://open.taobao.com/API.htm?docId=24304&docType=2
阿里云API https://open.taobao.com/API.htm?docId=24304&docType=2
aliyunocs
阿里云ocsAPI https://open.taobao.com/API.htm?docId=24698&docType=2
阿里云ocsAPI https://open.taobao.com/API.htm?docId=24698&docType=2
alsc
本地生活API https://open.taobao.com/API.htm?docId=57060&docType=2
本地生活API https://open.taobao.com/API.htm?docId=57060&docType=2
alscmerchant
本地生活商户基础API https://open.taobao.com/API.htm?docId=53173&docType=2
本地生活商户基础API https://open.taobao.com/API.htm?docId=53173&docType=2
antifraud
反欺诈风控API https://open.taobao.com/API.htm?docId=25505&docType=2
反欺诈风控API https://open.taobao.com/API.htm?docId=25505&docType=2
ascm
SCM API https://open.taobao.com/API.htm?docId=36216&docType=2
SCM API https://open.taobao.com/API.htm?docId=36216&docType=2
ascp
天猫供应 https://open.taobao.com/API.htm?docId=40826&docType=2
天猫供应 https://open.taobao.com/API.htm?docId=40826&docType=2
ascpchannel
新零售供应链API https://open.taobao.com/API.htm?docId=54020&docType=2
新零售供应链API https://open.taobao.com/API.htm?docId=54020&docType=2
ascpffo
AE-供应链 https://open.taobao.com/API.htm?docId=56317&docType=2
AE-供应链 https://open.taobao.com/API.htm?docId=56317&docType=2
ascpqcc
阿里巴巴供应链平台API https://open.taobao.com/API.htm?docId=32779&docType=2
阿里巴巴供应链平台API https://open.taobao.com/API.htm?docId=32779&docType=2
auction
司法拍卖 https://open.taobao.com/API.htm?docId=40551&docType=2
司法拍卖 https://open.taobao.com/API.htm?docId=40551&docType=2
autonavi
阿里车联网API https://open.taobao.com/API.htm?docId=24740&docType=2
阿里车联网API https://open.taobao.com/API.htm?docId=24740&docType=2
axindata
阿信-基础数据 https://open.taobao.com/API.htm?docId=55968&docType=2
阿信-基础数据 https://open.taobao.com/API.htm?docId=55968&docType=2
axintrade
阿信-交易API https://open.taobao.com/API.htm?docId=55695&docType=2
阿信-交易API https://open.taobao.com/API.htm?docId=55695&docType=2
b2bcert
b2b认证平台api https://open.taobao.com/API.htm?docId=32288&docType=2
b2b认证平台api https://open.taobao.com/API.htm?docId=32288&docType=2
baichuan
百川 https://open.taobao.com/API.htm?docId=31057&docType=2
百川 https://open.taobao.com/API.htm?docId=31057&docType=2
baichuanctg
百川-ctg https://open.taobao.com/API.htm?docId=28682&docType=2
百川-ctg https://open.taobao.com/API.htm?docId=28682&docType=2
baodian
宝点API https://open.taobao.com/API.htm?docId=22800&docType=2
宝点API https://open.taobao.com/API.htm?docId=22800&docType=2
baoxian
保险API https://open.taobao.com/API.htm?docId=37741&docType=2
保险API https://open.taobao.com/API.htm?docId=37741&docType=2
beehive
淘宝内容API https://open.taobao.com/API.htm?docId=27196&docType=2
淘宝内容API https://open.taobao.com/API.htm?docId=27196&docType=2
bill
账务API https://open.taobao.com/API.htm?docId=21709&docType=2
账务API https://open.taobao.com/API.htm?docId=21709&docType=2
blackvip
会员卡 https://open.taobao.com/API.htm?docId=46278&docType=2
会员卡 https://open.taobao.com/API.htm?docId=46278&docType=2
brandhub
品效API https://open.taobao.com/API.htm?docId=36460&docType=2
品效API https://open.taobao.com/API.htm?docId=36460&docType=2
btrip
商旅API https://open.taobao.com/API.htm?docId=33169&docType=2
商旅API https://open.taobao.com/API.htm?docId=33169&docType=2
bus
汽车票API https://open.taobao.com/API.htm?docId=52971&docType=2
汽车票API https://open.taobao.com/API.htm?docId=52971&docType=2
c2m
淘宝C2M https://open.taobao.com/API.htm?docId=51314&docType=2
淘宝C2M https://open.taobao.com/API.htm?docId=51314&docType=2
cainiaocntec
菜鸟末端商业 https://open.taobao.com/API.htm?docId=46493&docType=2
菜鸟末端商业 https://open.taobao.com/API.htm?docId=46493&docType=2
cainiaoecc
菜鸟控制塔API https://open.taobao.com/API.htm?docId=43854&docType=2
菜鸟控制塔API https://open.taobao.com/API.htm?docId=43854&docType=2
cainiaohandover
菜鸟国际出口 https://open.taobao.com/API.htm?docId=46429&docType=2
菜鸟国际出口 https://open.taobao.com/API.htm?docId=46429&docType=2
cainiaolocker
菜鸟裹裹API https://open.taobao.com/API.htm?docId=31197&docType=2
菜鸟裹裹API https://open.taobao.com/API.htm?docId=31197&docType=2
cainiaoncwl
菜鸟农村物流 https://open.taobao.com/API.htm?docId=27588&docType=2
菜鸟农村物流 https://open.taobao.com/API.htm?docId=27588&docType=2
caipiao
彩票API https://open.taobao.com/API.htm?docId=21828&docType=2
彩票API https://open.taobao.com/API.htm?docId=21828&docType=2
campus
智慧园区API https://open.taobao.com/API.htm?docId=32226&docType=2
智慧园区API https://open.taobao.com/API.htm?docId=32226&docType=2
car
旅行用车API https://open.taobao.com/API.htm?docId=44234&docType=2
旅行用车API https://open.taobao.com/API.htm?docId=44234&docType=2
category
类目API https://open.taobao.com/API.htm?docId=47659&docType=2
类目API https://open.taobao.com/API.htm?docId=47659&docType=2
charity
公益三小时公共 https://open.taobao.com/API.htm?docId=45562&docType=2
公益三小时公共 https://open.taobao.com/API.htm?docId=45562&docType=2
choujiang
淘宝抽奖平台API https://open.taobao.com/API.htm?docId=23213&docType=2
淘宝抽奖平台API https://open.taobao.com/API.htm?docId=23213&docType=2
cityretail
淘宝同城API https://open.taobao.com/API.htm?docId=51645&docType=2
淘宝同城API https://open.taobao.com/API.htm?docId=51645&docType=2
cloudgame
云游戏API https://open.taobao.com/API.htm?docId=55012&docType=2
云游戏API https://open.taobao.com/API.htm?docId=55012&docType=2
cloudpush
百川推送 https://open.taobao.com/API.htm?docId=25038&docType=2
百川推送 https://open.taobao.com/API.htm?docId=25038&docType=2
cmns
yunos推送服务api https://open.taobao.com/API.htm?docId=49740&docType=2
yunos推送服务api https://open.taobao.com/API.htm?docId=49740&docType=2
cntms
菜鸟配送API https://open.taobao.com/API.htm?docId=25659&docType=2
菜鸟配送API https://open.taobao.com/API.htm?docId=25659&docType=2
consignplatform
菜鸟发货工作台API https://open.taobao.com/API.htm?docId=47727&docType=2
菜鸟发货工作台API https://open.taobao.com/API.htm?docId=47727&docType=2
crm
店铺会员管理API https://open.taobao.com/API.htm?docId=25584&docType=2
店铺会员管理API https://open.taobao.com/API.htm?docId=25584&docType=2
customizemarket
淘宝定制行业API https://open.taobao.com/API.htm?docId=28671&docType=2
淘宝定制行业API https://open.taobao.com/API.htm?docId=28671&docType=2
damai
大麦API https://open.taobao.com/API.htm?docId=39475&docType=2
大麦API https://open.taobao.com/API.htm?docId=39475&docType=2
damaiticklet
大麦第三方商家接入API https://open.taobao.com/API.htm?docId=55148&docType=2
大麦第三方商家接入API https://open.taobao.com/API.htm?docId=55148&docType=2
degoperation
激励API https://open.taobao.com/API.htm?docId=38249&docType=2
激励API https://open.taobao.com/API.htm?docId=38249&docType=2
deliveryvoucher
淘宝卡券平台 https://open.taobao.com/API.htm?docId=29874&docType=2
淘宝卡券平台 https://open.taobao.com/API.htm?docId=29874&docType=2
dengta
阿里影业灯塔 https://open.taobao.com/API.htm?docId=50713&docType=2
阿里影业灯塔 https://open.taobao.com/API.htm?docId=50713&docType=2
dmp
DMP API https://open.taobao.com/API.htm?docId=23625&docType=2
DMP API https://open.taobao.com/API.htm?docId=23625&docType=2
drug
阿里健康药API https://open.taobao.com/API.htm?docId=50465&docType=2
阿里健康药API https://open.taobao.com/API.htm?docId=50465&docType=2
drugtrace
阿里健康追溯码 https://open.taobao.com/API.htm?docId=40971&docType=2
阿里健康追溯码 https://open.taobao.com/API.htm?docId=40971&docType=2
dt
数据API https://open.taobao.com/API.htm?docId=38780&docType=2
数据API https://open.taobao.com/API.htm?docId=38780&docType=2
dutyfree
海南离岛对外API https://open.taobao.com/API.htm?docId=56257&docType=2
海南离岛对外API https://open.taobao.com/API.htm?docId=56257&docType=2
einvoice
电子发票 https://open.taobao.com/API.htm?docId=27764&docType=2
电子发票 https://open.taobao.com/API.htm?docId=27764&docType=2
eleenterprisecartnew
企业订餐购物车API https://open.taobao.com/API.htm?docId=49011&docType=2
企业订餐购物车API https://open.taobao.com/API.htm?docId=49011&docType=2
eleenterprisecoupon
企业订餐优惠券API https://open.taobao.com/API.htm?docId=49008&docType=2
企业订餐优惠券API https://open.taobao.com/API.htm?docId=49008&docType=2
eleenterpriseemployee
企业订餐员工API https://open.taobao.com/API.htm?docId=48679&docType=2
企业订餐员工API https://open.taobao.com/API.htm?docId=48679&docType=2
eleenterpriseordernew
企业订餐订单API https://open.taobao.com/API.htm?docId=49014&docType=2
企业订餐订单API https://open.taobao.com/API.htm?docId=49014&docType=2
eleenterpriserestaurant
企业订餐店铺接口 https://open.taobao.com/API.htm?docId=49167&docType=2
企业订餐店铺接口 https://open.taobao.com/API.htm?docId=49167&docType=2
elife
生活汇API https://open.taobao.com/API.htm?docId=26189&docType=2
生活汇API https://open.taobao.com/API.htm?docId=26189&docType=2
eticket
电子物流API https://open.taobao.com/API.htm?docId=27156&docType=2
电子物流API https://open.taobao.com/API.htm?docId=27156&docType=2
examination
体检机构API https://open.taobao.com/API.htm?docId=41650&docType=2
体检机构API https://open.taobao.com/API.htm?docId=41650&docType=2
exchange
换货API https://open.taobao.com/API.htm?docId=31202&docType=2
换货API https://open.taobao.com/API.htm?docId=31202&docType=2
fans
互动吧API https://open.taobao.com/API.htm?docId=44032&docType=2
互动吧API https://open.taobao.com/API.htm?docId=44032&docType=2
feedflow
信息流API https://open.taobao.com/API.htm?docId=43248&docType=2
信息流API https://open.taobao.com/API.htm?docId=43248&docType=2
fenxiao
分销API https://open.taobao.com/API.htm?docId=55750&docType=2
分销API https://open.taobao.com/API.htm?docId=55750&docType=2
film
电影票API https://open.taobao.com/API.htm?docId=45077&docType=2
电影票API https://open.taobao.com/API.htm?docId=45077&docType=2
filmtfavatar
影城自运营开放Api https://open.taobao.com/API.htm?docId=46972&docType=2
影城自运营开放Api https://open.taobao.com/API.htm?docId=46972&docType=2
fivee
资质共享API https://open.taobao.com/API.htm?docId=42262&docType=2
资质共享API https://open.taobao.com/API.htm?docId=42262&docType=2
flight
机票API https://open.taobao.com/API.htm?docId=54268&docType=2
机票API https://open.taobao.com/API.htm?docId=54268&docType=2
flightuppc
飞猪机票前台类目 https://open.taobao.com/API.htm?docId=42575&docType=2
飞猪机票前台类目 https://open.taobao.com/API.htm?docId=42575&docType=2
foodscan
脚模API https://open.taobao.com/API.htm?docId=50512&docType=2
脚模API https://open.taobao.com/API.htm?docId=50512&docType=2
fpm
企业运营平台-集团财 https://open.taobao.com/API.htm?docId=33937&docType=2
企业运营平台-集团财 https://open.taobao.com/API.htm?docId=33937&docType=2
fundplatform
汇金API https://open.taobao.com/API.htm?docId=30278&docType=2
汇金API https://open.taobao.com/API.htm?docId=30278&docType=2
game
淘宝游戏API https://open.taobao.com/API.htm?docId=45035&docType=2
淘宝游戏API https://open.taobao.com/API.htm?docId=45035&docType=2
gameact
游戏激励平台API https://open.taobao.com/API.htm?docId=25396&docType=2
游戏激励平台API https://open.taobao.com/API.htm?docId=25396&docType=2
globalvirtual
国际虚拟API https://open.taobao.com/API.htm?docId=48538&docType=2
国际虚拟API https://open.taobao.com/API.htm?docId=48538&docType=2
guoguo
菜鸟无线API https://open.taobao.com/API.htm?docId=26056&docType=2
菜鸟无线API https://open.taobao.com/API.htm?docId=26056&docType=2
happytrip
欢行开发平台API https://open.taobao.com/API.htm?docId=47501&docType=2
欢行开发平台API https://open.taobao.com/API.htm?docId=47501&docType=2
healthnr
阿里健康新零售 https://open.taobao.com/API.htm?docId=41387&docType=2
阿里健康新零售 https://open.taobao.com/API.htm?docId=41387&docType=2
homeai
HOMEAI https://open.taobao.com/API.htm?docId=41831&docType=2
HOMEAI https://open.taobao.com/API.htm?docId=41831&docType=2
hotel
酒店导购API https://open.taobao.com/API.htm?docId=35264&docType=2
酒店导购API https://open.taobao.com/API.htm?docId=35264&docType=2
hotelalliance
飞猪酒店签约中心 https://open.taobao.com/API.htm?docId=49754&docType=2
飞猪酒店签约中心 https://open.taobao.com/API.htm?docId=49754&docType=2
hotelhstdf
飞猪酒店标准库 https://open.taobao.com/API.htm?docId=44900&docType=2
飞猪酒店标准库 https://open.taobao.com/API.htm?docId=44900&docType=2
icbu
国际站商品API https://open.taobao.com/API.htm?docId=25348&docType=2
国际站商品API https://open.taobao.com/API.htm?docId=25348&docType=2
icbuassurance
ICBU-信保 https://open.taobao.com/API.htm?docId=31686&docType=2
ICBU-信保 https://open.taobao.com/API.htm?docId=31686&docType=2
icbudropshipping
ICBU-DropShipping https://open.taobao.com/API.htm?docId=54908&docType=2
ICBU-DropShipping https://open.taobao.com/API.htm?docId=54908&docType=2
icbulogistics
ICBU-物流 https://open.taobao.com/API.htm?docId=47959&docType=2
ICBU-物流 https://open.taobao.com/API.htm?docId=47959&docType=2
icbuproduct
ICBU商品api https://open.taobao.com/API.htm?docId=50558&docType=2
ICBU商品api https://open.taobao.com/API.htm?docId=50558&docType=2
icburfq
ICBU-RFQ https://open.taobao.com/API.htm?docId=40805&docType=2
ICBU-RFQ https://open.taobao.com/API.htm?docId=40805&docType=2
icbuseller
ICBU卖家API https://open.taobao.com/API.htm?docId=51234&docType=2
ICBU卖家API https://open.taobao.com/API.htm?docId=51234&docType=2
icbushowcase
ICBU-橱 https://open.taobao.com/API.htm?docId=40964&docType=2
ICBU-橱 https://open.taobao.com/API.htm?docId=40964&docType=2
idle
闲鱼 https://open.taobao.com/API.htm?docId=48312&docType=2
闲鱼 https://open.taobao.com/API.htm?docId=48312&docType=2
idleisv
闲鱼已验货 https://open.taobao.com/API.htm?docId=49487&docType=2
闲鱼已验货 https://open.taobao.com/API.htm?docId=49487&docType=2
idleitem
闲鱼发布 https://open.taobao.com/API.htm?docId=39868&docType=2
闲鱼发布 https://open.taobao.com/API.htm?docId=39868&docType=2
idleparttime
闲鱼兼职 https://open.taobao.com/API.htm?docId=52622&docType=2
闲鱼兼职 https://open.taobao.com/API.htm?docId=52622&docType=2
ieagency
国际机票订单API https://open.taobao.com/API.htm?docId=27905&docType=2
国际机票订单API https://open.taobao.com/API.htm?docId=27905&docType=2
ihome
iHome API https://open.taobao.com/API.htm?docId=43219&docType=2
iHome API https://open.taobao.com/API.htm?docId=43219&docType=2
interact
天猫互动接口 https://open.taobao.com/API.htm?docId=25768&docType=2
天猫互动接口 https://open.taobao.com/API.htm?docId=25768&docType=2
interactvip
会员中心API https://open.taobao.com/API.htm?docId=29108&docType=2
会员中心API https://open.taobao.com/API.htm?docId=29108&docType=2
inventory
库存API https://open.taobao.com/API.htm?docId=31754&docType=2
库存API https://open.taobao.com/API.htm?docId=31754&docType=2
iot
智能设备 https://open.taobao.com/API.htm?docId=40674&docType=2
智能设备 https://open.taobao.com/API.htm?docId=40674&docType=2
ioti
IoTI API https://open.taobao.com/API.htm?docId=46348&docType=2
IoTI API https://open.taobao.com/API.htm?docId=46348&docType=2
iotticket
IoT售后解决方案API https://open.taobao.com/API.htm?docId=50245&docType=2
IoT售后解决方案API https://open.taobao.com/API.htm?docId=50245&docType=2
itpolicy
国际机票政策API https://open.taobao.com/API.htm?docId=25494&docType=2
国际机票政策API https://open.taobao.com/API.htm?docId=25494&docType=2
jae
JAE https://open.taobao.com/API.htm?docId=30901&docType=2
JAE https://open.taobao.com/API.htm?docId=30901&docType=2
jipiao
国内机票订单API https://open.taobao.com/API.htm?docId=26565&docType=2
国内机票订单API https://open.taobao.com/API.htm?docId=26565&docType=2
jms
ONS消息服务 https://open.taobao.com/API.htm?docId=25635&docType=2
ONS消息服务 https://open.taobao.com/API.htm?docId=25635&docType=2
jst
聚石塔API https://open.taobao.com/API.htm?docId=55254&docType=2
聚石塔API https://open.taobao.com/API.htm?docId=55254&docType=2
jstinteractive
互动开放API https://open.taobao.com/API.htm?docId=53888&docType=2
互动开放API https://open.taobao.com/API.htm?docId=53888&docType=2
jstsecret
聚石塔隐私号 https://open.taobao.com/API.htm?docId=52636&docType=2
聚石塔隐私号 https://open.taobao.com/API.htm?docId=52636&docType=2
ju
聚划算API https://open.taobao.com/API.htm?docId=28762&docType=2
聚划算API https://open.taobao.com/API.htm?docId=28762&docType=2
jym
交易猫API https://open.taobao.com/API.htm?docId=46489&docType=2
交易猫API https://open.taobao.com/API.htm?docId=46489&docType=2
kbalgo
本地生活内容API https://open.taobao.com/API.htm?docId=54328&docType=2
本地生活内容API https://open.taobao.com/API.htm?docId=54328&docType=2
kclub
知识库API https://open.taobao.com/API.htm?docId=38771&docType=2
知识库API https://open.taobao.com/API.htm?docId=38771&docType=2
koubeimall
口碑综合体API https://open.taobao.com/API.htm?docId=49834&docType=2
口碑综合体API https://open.taobao.com/API.htm?docId=49834&docType=2
larkiot
阿里影业云智API https://open.taobao.com/API.htm?docId=42042&docType=2
阿里影业云智API https://open.taobao.com/API.htm?docId=42042&docType=2
lbs
地动仪 https://open.taobao.com/API.htm?docId=37287&docType=2
地动仪 https://open.taobao.com/API.htm?docId=37287&docType=2
legalcase
法务诉讼对外API https://open.taobao.com/API.htm?docId=53340&docType=2
法务诉讼对外API https://open.taobao.com/API.htm?docId=53340&docType=2
legalsuit
司法开放平台 https://open.taobao.com/API.htm?docId=43036&docType=2
司法开放平台 https://open.taobao.com/API.htm?docId=43036&docType=2
lifeservice
生活服务API https://open.taobao.com/API.htm?docId=50111&docType=2
生活服务API https://open.taobao.com/API.htm?docId=50111&docType=2
logistic
物流API https://open.taobao.com/API.htm?docId=47316&docType=2
物流API https://open.taobao.com/API.htm?docId=47316&docType=2
lstbm
零售通门店API https://open.taobao.com/API.htm?docId=43687&docType=2
零售通门店API https://open.taobao.com/API.htm?docId=43687&docType=2
lstfundbill
零售通结算API https://open.taobao.com/API.htm?docId=46608&docType=2
零售通结算API https://open.taobao.com/API.htm?docId=46608&docType=2
lsticitem
零售通商品API https://open.taobao.com/API.htm?docId=47318&docType=2
零售通商品API https://open.taobao.com/API.htm?docId=47318&docType=2
lstlogistics
零售通订单履行 https://open.taobao.com/API.htm?docId=53484&docType=2
零售通订单履行 https://open.taobao.com/API.htm?docId=53484&docType=2
lstlogistics2
零售通履单API https://open.taobao.com/API.htm?docId=53482&docType=2
零售通履单API https://open.taobao.com/API.htm?docId=53482&docType=2
lstmarketing
零售通营销API https://open.taobao.com/API.htm?docId=44185&docType=2
零售通营销API https://open.taobao.com/API.htm?docId=44185&docType=2
lstpos
零售通智能POS开放 https://open.taobao.com/API.htm?docId=32945&docType=2
零售通智能POS开放 https://open.taobao.com/API.htm?docId=32945&docType=2
lstspeacker
零售通小店智能设备 https://open.taobao.com/API.htm?docId=45361&docType=2
零售通小店智能设备 https://open.taobao.com/API.htm?docId=45361&docType=2
lsttrade
零售通交易API https://open.taobao.com/API.htm?docId=47800&docType=2
零售通交易API https://open.taobao.com/API.htm?docId=47800&docType=2
lstvending
零售通自动售货机 https://open.taobao.com/API.htm?docId=37506&docType=2
零售通自动售货机 https://open.taobao.com/API.htm?docId=37506&docType=2
lstwarehouse
零售通仓储API https://open.taobao.com/API.htm?docId=53981&docType=2
零售通仓储API https://open.taobao.com/API.htm?docId=53981&docType=2
ma
码上淘API https://open.taobao.com/API.htm?docId=23660&docType=2
码上淘API https://open.taobao.com/API.htm?docId=23660&docType=2
maitix
大麦票务云分销API https://open.taobao.com/API.htm?docId=49119&docType=2
大麦票务云分销API https://open.taobao.com/API.htm?docId=49119&docType=2
mc
云码API https://open.taobao.com/API.htm?docId=47156&docType=2
云码API https://open.taobao.com/API.htm?docId=47156&docType=2
media
多媒体平台API https://open.taobao.com/API.htm?docId=27943&docType=2
多媒体平台API https://open.taobao.com/API.htm?docId=27943&docType=2
medicalbase
阿里健康挂号号源直连 https://open.taobao.com/API.htm?docId=55216&docType=2
阿里健康挂号号源直连 https://open.taobao.com/API.htm?docId=55216&docType=2
mei
天猫美妆API https://open.taobao.com/API.htm?docId=25013&docType=2
天猫美妆API https://open.taobao.com/API.htm?docId=25013&docType=2
middleclaims
国际化中台服务域保险 https://open.taobao.com/API.htm?docId=53335&docType=2
国际化中台服务域保险 https://open.taobao.com/API.htm?docId=53335&docType=2
miniapp
淘宝小程序API https://open.taobao.com/API.htm?docId=54266&docType=2
淘宝小程序API https://open.taobao.com/API.htm?docId=54266&docType=2
miniappcloud
商家应用 https://open.taobao.com/API.htm?docId=46995&docType=2
商家应用 https://open.taobao.com/API.htm?docId=46995&docType=2
miniappopen
miniapp开放API https://open.taobao.com/API.htm?docId=51768&docType=2
miniapp开放API https://open.taobao.com/API.htm?docId=51768&docType=2
mirage
优酷播控幻影API https://open.taobao.com/API.htm?docId=43082&docType=2
优酷播控幻影API https://open.taobao.com/API.htm?docId=43082&docType=2
mos
喵街API https://open.taobao.com/API.htm?docId=55338&docType=2
喵街API https://open.taobao.com/API.htm?docId=55338&docType=2
moscm
银泰scm-openapi https://open.taobao.com/API.htm?docId=41072&docType=2
银泰scm-openapi https://open.taobao.com/API.htm?docId=41072&docType=2
mozi
MOZI账号API https://open.taobao.com/API.htm?docId=45946&docType=2
MOZI账号API https://open.taobao.com/API.htm?docId=45946&docType=2
moziacl
MOZI权限API https://open.taobao.com/API.htm?docId=45484&docType=2
MOZI权限API https://open.taobao.com/API.htm?docId=45484&docType=2
mozivds
MOZI 租户 https://open.taobao.com/API.htm?docId=51055&docType=2
MOZI 租户 https://open.taobao.com/API.htm?docId=51055&docType=2
msgamp
消息amp通道 https://open.taobao.com/API.htm?docId=50611&docType=2
消息amp通道 https://open.taobao.com/API.htm?docId=50611&docType=2
mtop
手机淘宝API https://open.taobao.com/API.htm?docId=23431&docType=2
手机淘宝API https://open.taobao.com/API.htm?docId=23431&docType=2
mtopopen
手淘开放API https://open.taobao.com/API.htm?docId=26114&docType=2
手淘开放API https://open.taobao.com/API.htm?docId=26114&docType=2
mydata
国际站数据管 https://open.taobao.com/API.htm?docId=26908&docType=2
国际站数据管 https://open.taobao.com/API.htm?docId=26908&docType=2
nazca
网上法庭对外API https://open.taobao.com/API.htm?docId=27772&docType=2
网上法庭对外API https://open.taobao.com/API.htm?docId=27772&docType=2
newretail
新零售API https://open.taobao.com/API.htm?docId=44781&docType=2
新零售API https://open.taobao.com/API.htm?docId=44781&docType=2
nlife
零售plus https://open.taobao.com/API.htm?docId=36762&docType=2
零售plus https://open.taobao.com/API.htm?docId=36762&docType=2
nlp
文本算法API https://open.taobao.com/API.htm?docId=26130&docType=2
文本算法API https://open.taobao.com/API.htm?docId=26130&docType=2
normalvisa
度假-签证管理API https://open.taobao.com/API.htm?docId=44453&docType=2
度假-签证管理API https://open.taobao.com/API.htm?docId=44453&docType=2
nropen
新零售开放API https://open.taobao.com/API.htm?docId=50091&docType=2
新零售开放API https://open.taobao.com/API.htm?docId=50091&docType=2
nrpos
新零售POS https://open.taobao.com/API.htm?docId=42992&docType=2
新零售POS https://open.taobao.com/API.htm?docId=42992&docType=2
nrt
零售终端API https://open.taobao.com/API.htm?docId=35424&docType=2
零售终端API https://open.taobao.com/API.htm?docId=35424&docType=2
omniorder
全渠道API https://open.taobao.com/API.htm?docId=42927&docType=2
全渠道API https://open.taobao.com/API.htm?docId=42927&docType=2
openim
openimAPI https://open.taobao.com/API.htm?docId=25766&docType=2
openimAPI https://open.taobao.com/API.htm?docId=25766&docType=2
openmall
OpenMall-API https://open.taobao.com/API.htm?docId=50836&docType=2
OpenMall-API https://open.taobao.com/API.htm?docId=50836&docType=2
opentrade
交易开放 https://open.taobao.com/API.htm?docId=49615&docType=2
交易开放 https://open.taobao.com/API.htm?docId=49615&docType=2
ott
桌面API https://open.taobao.com/API.htm?docId=29910&docType=2
桌面API https://open.taobao.com/API.htm?docId=29910&docType=2
ottpay
ott支付 https://open.taobao.com/API.htm?docId=46647&docType=2
ott支付 https://open.taobao.com/API.htm?docId=46647&docType=2
oversea
跨境API https://open.taobao.com/API.htm?docId=28703&docType=2
跨境API https://open.taobao.com/API.htm?docId=28703&docType=2
paimai
拍卖API https://open.taobao.com/API.htm?docId=38618&docType=2
拍卖API https://open.taobao.com/API.htm?docId=38618&docType=2
pentraprism
五棱镜任务API https://open.taobao.com/API.htm?docId=52767&docType=2
五棱镜任务API https://open.taobao.com/API.htm?docId=52767&docType=2
perfect
同城零售全渠道 https://open.taobao.com/API.htm?docId=53988&docType=2
同城零售全渠道 https://open.taobao.com/API.htm?docId=53988&docType=2
product
商品API https://open.taobao.com/API.htm?docId=38593&docType=2
商品API https://open.taobao.com/API.htm?docId=38593&docType=2
promotion
营销API https://open.taobao.com/API.htm?docId=50923&docType=2
营销API https://open.taobao.com/API.htm?docId=50923&docType=2
pur
信息平台-采购 https://open.taobao.com/API.htm?docId=38501&docType=2
信息平台-采购 https://open.taobao.com/API.htm?docId=38501&docType=2
qianniu
千牛接口 https://open.taobao.com/API.htm?docId=27244&docType=2
千牛接口 https://open.taobao.com/API.htm?docId=27244&docType=2
qimen
奇门仓储API https://open.taobao.com/API.htm?docId=29364&docType=2
奇门仓储API https://open.taobao.com/API.htm?docId=29364&docType=2
qt
质检品控API https://open.taobao.com/API.htm?docId=10902&docType=2
质检品控API https://open.taobao.com/API.htm?docId=10902&docType=2
rail
国际火车票API https://open.taobao.com/API.htm?docId=47364&docType=2
国际火车票API https://open.taobao.com/API.htm?docId=47364&docType=2
refund
退款API https://open.taobao.com/API.htm?docId=46784&docType=2
退款API https://open.taobao.com/API.htm?docId=46784&docType=2
retail
天猫门店API https://open.taobao.com/API.htm?docId=31454&docType=2
天猫门店API https://open.taobao.com/API.htm?docId=31454&docType=2
rhino
新制造API https://open.taobao.com/API.htm?docId=39534&docType=2
新制造API https://open.taobao.com/API.htm?docId=39534&docType=2
scbp
国际站外贸直通车API https://open.taobao.com/API.htm?docId=25200&docType=2
国际站外贸直通车API https://open.taobao.com/API.htm?docId=25200&docType=2
scs
阿里妈妈广告中心API https://open.taobao.com/API.htm?docId=47165&docType=2
阿里妈妈广告中心API https://open.taobao.com/API.htm?docId=47165&docType=2
seaking
阿里翻译API https://open.taobao.com/API.htm?docId=51871&docType=2
阿里翻译API https://open.taobao.com/API.htm?docId=51871&docType=2
security
聚安全API https://open.taobao.com/API.htm?docId=27312&docType=2
聚安全API https://open.taobao.com/API.htm?docId=27312&docType=2
servicecenter
服务平台API https://open.taobao.com/API.htm?docId=25687&docType=2
服务平台API https://open.taobao.com/API.htm?docId=25687&docType=2
shenjing
神鲸应用API https://open.taobao.com/API.htm?docId=45850&docType=2
神鲸应用API https://open.taobao.com/API.htm?docId=45850&docType=2
ship
船票API https://open.taobao.com/API.htm?docId=48055&docType=2
船票API https://open.taobao.com/API.htm?docId=48055&docType=2
shop
店铺API https://open.taobao.com/API.htm?docId=30898&docType=2
店铺API https://open.taobao.com/API.htm?docId=30898&docType=2
simba
直通车API https://open.taobao.com/API.htm?docId=10551&docType=2
直通车API https://open.taobao.com/API.htm?docId=10551&docType=2
singletreasure
商家营销中心API https://open.taobao.com/API.htm?docId=31352&docType=2
商家营销中心API https://open.taobao.com/API.htm?docId=31352&docType=2
smartstore
智慧门店 https://open.taobao.com/API.htm?docId=39618&docType=2
智慧门店 https://open.taobao.com/API.htm?docId=39618&docType=2
store
商户API https://open.taobao.com/API.htm?docId=50163&docType=2
商户API https://open.taobao.com/API.htm?docId=50163&docType=2
subuser
子账号管理API https://open.taobao.com/API.htm?docId=10820&docType=2
子账号管理API https://open.taobao.com/API.htm?docId=10820&docType=2
sungari
平台治理API https://open.taobao.com/API.htm?docId=32353&docType=2
平台治理API https://open.taobao.com/API.htm?docId=32353&docType=2
tanx
Tanx API https://open.taobao.com/API.htm?docId=25062&docType=2
Tanx API https://open.taobao.com/API.htm?docId=25062&docType=2
taotv
虚拟院线API https://open.taobao.com/API.htm?docId=35818&docType=2
虚拟院线API https://open.taobao.com/API.htm?docId=35818&docType=2
tax
业务平台事业部-税务平台API https://open.taobao.com/API.htm?docId=41740&docType=2
业务平台事业部-税务平台API https://open.taobao.com/API.htm?docId=41740&docType=2
tbk
淘宝客API https://open.taobao.com/API.htm?docId=48340&docType=2
淘宝客API https://open.taobao.com/API.htm?docId=48340&docType=2
ticket
门票-商品管理API https://open.taobao.com/API.htm?docId=27945&docType=2
门票-商品管理API https://open.taobao.com/API.htm?docId=27945&docType=2
tmallcampus
天猫校园API https://open.taobao.com/API.htm?docId=52079&docType=2
天猫校园API https://open.taobao.com/API.htm?docId=52079&docType=2
tmallcar
天猫汽车 https://open.taobao.com/API.htm?docId=41631&docType=2
天猫汽车 https://open.taobao.com/API.htm?docId=41631&docType=2
tmallcarenter
tmall-carcenter https://open.taobao.com/API.htm?docId=31209&docType=2
tmall-carcenter https://open.taobao.com/API.htm?docId=31209&docType=2
tmallchannel
渠道中心API https://open.taobao.com/API.htm?docId=40706&docType=2
渠道中心API https://open.taobao.com/API.htm?docId=40706&docType=2
tmallcms
天猫会员积分 https://open.taobao.com/API.htm?docId=25758&docType=2
天猫会员积分 https://open.taobao.com/API.htm?docId=25758&docType=2
tmallfcbox
天猫线下大屏 https://open.taobao.com/API.htm?docId=39240&docType=2
天猫线下大屏 https://open.taobao.com/API.htm?docId=39240&docType=2
tmallgenie
天猫精灵开放API https://open.taobao.com/API.htm?docId=36465&docType=2
天猫精灵开放API https://open.taobao.com/API.htm?docId=36465&docType=2
tmallgeniescp
天猫精灵供应链网关API https://open.taobao.com/API.htm?docId=53192&docType=2
天猫精灵供应链网关API https://open.taobao.com/API.htm?docId=53192&docType=2
tmallhk
天猫国际API https://open.taobao.com/API.htm?docId=51012&docType=2
天猫国际API https://open.taobao.com/API.htm?docId=51012&docType=2
tmallitem
天猫精品库API https://open.taobao.com/API.htm?docId=21643&docType=2
天猫精品库API https://open.taobao.com/API.htm?docId=21643&docType=2
tmallnr
天猫新零售 https://open.taobao.com/API.htm?docId=55242&docType=2
天猫新零售 https://open.taobao.com/API.htm?docId=55242&docType=2
tmallsc
天猫服务数据API https://open.taobao.com/API.htm?docId=53341&docType=2
天猫服务数据API https://open.taobao.com/API.htm?docId=53341&docType=2
tmallservice
天猫服务商品API https://open.taobao.com/API.htm?docId=49044&docType=2
天猫服务商品API https://open.taobao.com/API.htm?docId=49044&docType=2
tmalltrend
天猫新品平台API https://open.taobao.com/API.htm?docId=54824&docType=2
天猫新品平台API https://open.taobao.com/API.htm?docId=54824&docType=2
tmc
消息服务API https://open.taobao.com/API.htm?docId=53697&docType=2
消息服务API https://open.taobao.com/API.htm?docId=53697&docType=2
tmic
天猫新品创新中心API https://open.taobao.com/API.htm?docId=43329&docType=2
天猫新品创新中心API https://open.taobao.com/API.htm?docId=43329&docType=2
topoaid
隐私保护API https://open.taobao.com/API.htm?docId=54714&docType=2
隐私保护API https://open.taobao.com/API.htm?docId=54714&docType=2
trade
交易API https://open.taobao.com/API.htm?docId=48314&docType=2
交易API https://open.taobao.com/API.htm?docId=48314&docType=2
traderate
评价API https://open.taobao.com/API.htm?docId=48881&docType=2
评价API https://open.taobao.com/API.htm?docId=48881&docType=2
train
火车票API https://open.taobao.com/API.htm?docId=24270&docType=2
火车票API https://open.taobao.com/API.htm?docId=24270&docType=2
travel
度假-商品管理API https://open.taobao.com/API.htm?docId=28132&docType=2
度假-商品管理API https://open.taobao.com/API.htm?docId=28132&docType=2
traveltrade
度假&门票-交易管理API https://open.taobao.com/API.htm?docId=52211&docType=2
度假&门票-交易管理API https://open.taobao.com/API.htm?docId=52211&docType=2
tttm
天天特价 https://open.taobao.com/API.htm?docId=48644&docType=2
天天特价 https://open.taobao.com/API.htm?docId=48644&docType=2
tuanhotel
酒店团购套餐API https://open.taobao.com/API.htm?docId=45432&docType=2
酒店团购套餐API https://open.taobao.com/API.htm?docId=45432&docType=2
tuike
1688推客API https://open.taobao.com/API.htm?docId=27457&docType=2
1688推客API https://open.taobao.com/API.htm?docId=27457&docType=2
tvpay
tv支付 https://open.taobao.com/API.htm?docId=26205&docType=2
tv支付 https://open.taobao.com/API.htm?docId=26205&docType=2
tvupadmin
迎客松牌照审核接口 https://open.taobao.com/API.htm?docId=30410&docType=2
迎客松牌照审核接口 https://open.taobao.com/API.htm?docId=30410&docType=2
txcs
天猫超市前台API https://open.taobao.com/API.htm?docId=45441&docType=2
天猫超市前台API https://open.taobao.com/API.htm?docId=45441&docType=2
uscesl
业务平台新零售 https://open.taobao.com/API.htm?docId=41646&docType=2
业务平台新零售 https://open.taobao.com/API.htm?docId=41646&docType=2
user
用户API https://open.taobao.com/API.htm?docId=24938&docType=2
用户API https://open.taobao.com/API.htm?docId=24938&docType=2
usergrowth
手淘用户增 https://open.taobao.com/API.htm?docId=43959&docType=2
手淘用户增 https://open.taobao.com/API.htm?docId=43959&docType=2
usergrowth2
用户增长 https://open.taobao.com/API.htm?docId=43098&docType=2
用户增长 https://open.taobao.com/API.htm?docId=43098&docType=2
util
工具API https://open.taobao.com/API.htm?docId=47640&docType=2
工具API https://open.taobao.com/API.htm?docId=47640&docType=2
vaccin
阿里健康-疫苗API https://open.taobao.com/API.htm?docId=37710&docType=2
阿里健康-疫苗API https://open.taobao.com/API.htm?docId=37710&docType=2
viapi
视觉开放API(viapi) https://open.taobao.com/API.htm?docId=50726&docType=2
视觉开放API(viapi) https://open.taobao.com/API.htm?docId=50726&docType=2
vms
电动车API https://open.taobao.com/API.htm?docId=30434&docType=2
电动车API https://open.taobao.com/API.htm?docId=30434&docType=2
wangwang
旺旺API https://open.taobao.com/API.htm?docId=27589&docType=2
旺旺API https://open.taobao.com/API.htm?docId=27589&docType=2
waybill
电子面单API https://open.taobao.com/API.htm?docId=27111&docType=2
电子面单API https://open.taobao.com/API.htm?docId=27111&docType=2
wdk
五道口API https://open.taobao.com/API.htm?docId=53548&docType=2
五道口API https://open.taobao.com/API.htm?docId=53548&docType=2
wdkitem
五道口商品API https://open.taobao.com/API.htm?docId=30648&docType=2
五道口商品API https://open.taobao.com/API.htm?docId=30648&docType=2
wdklogistics
五道口-物流-自提API https://open.taobao.com/API.htm?docId=47575&docType=2
五道口-物流-自提API https://open.taobao.com/API.htm?docId=47575&docType=2
wenyuvideo
数娱媒资输出 https://open.taobao.com/API.htm?docId=41681&docType=2
数娱媒资输出 https://open.taobao.com/API.htm?docId=41681&docType=2
westcrm
亲橙里westcrmAPI https://open.taobao.com/API.htm?docId=41384&docType=2
亲橙里westcrmAPI https://open.taobao.com/API.htm?docId=41384&docType=2
wirelessshare
手淘分享 https://open.taobao.com/API.htm?docId=32461&docType=2
手淘分享 https://open.taobao.com/API.htm?docId=32461&docType=2
wlb
物流宝API https://open.taobao.com/API.htm?docId=28394&docType=2
物流宝API https://open.taobao.com/API.htm?docId=28394&docType=2
wlbimports
菜鸟集货API https://open.taobao.com/API.htm?docId=45980&docType=2
菜鸟集货API https://open.taobao.com/API.htm?docId=45980&docType=2
wms
菜鸟仓配API https://open.taobao.com/API.htm?docId=26245&docType=2
菜鸟仓配API https://open.taobao.com/API.htm?docId=26245&docType=2
xhotel
酒店API https://open.taobao.com/API.htm?docId=49115&docType=2
酒店API https://open.taobao.com/API.htm?docId=49115&docType=2
xhotelcrm
酒店会员API https://open.taobao.com/API.htm?docId=34020&docType=2
酒店会员API https://open.taobao.com/API.htm?docId=34020&docType=2
xhotelitem
酒店商品API https://open.taobao.com/API.htm?docId=22665&docType=2
酒店商品API https://open.taobao.com/API.htm?docId=22665&docType=2
xhotelofficial
酒店官网信用住API https://open.taobao.com/API.htm?docId=26073&docType=2
酒店官网信用住API https://open.taobao.com/API.htm?docId=26073&docType=2
xhoteloffline
酒店线下信用住API https://open.taobao.com/API.htm?docId=26074&docType=2
酒店线下信用住API https://open.taobao.com/API.htm?docId=26074&docType=2
xhotelonlineorder
酒店在线预订API https://open.taobao.com/API.htm?docId=48716&docType=2
酒店在线预订API https://open.taobao.com/API.htm?docId=48716&docType=2
xiami
虾米API https://open.taobao.com/API.htm?docId=23279&docType=2
虾米API https://open.taobao.com/API.htm?docId=23279&docType=2
xiamiatrist
曲库开放平台艺人API https://open.taobao.com/API.htm?docId=55125&docType=2
曲库开放平台艺人API https://open.taobao.com/API.htm?docId=55125&docType=2
xiamicontent
曲库开放平台歌曲API https://open.taobao.com/API.htm?docId=54991&docType=2
曲库开放平台歌曲API https://open.taobao.com/API.htm?docId=54991&docType=2
xiamiopen
虾米开放平台 https://open.taobao.com/API.htm?docId=36051&docType=2
虾米开放平台 https://open.taobao.com/API.htm?docId=36051&docType=2
xiamitrace
曲库开放平台TraceAPI https://open.taobao.com/API.htm?docId=51350&docType=2
曲库开放平台TraceAPI https://open.taobao.com/API.htm?docId=51350&docType=2
youkudsp
优酷网盟 https://open.taobao.com/API.htm?docId=39065&docType=2
优酷网盟 https://open.taobao.com/API.htm?docId=39065&docType=2
youkuott
优酷-媒资 https://open.taobao.com/API.htm?docId=42057&docType=2
优酷-媒资 https://open.taobao.com/API.htm?docId=42057&docType=2
yunos
YunOS https://open.taobao.com/API.htm?docId=33101&docType=2
YunOS https://open.taobao.com/API.htm?docId=33101&docType=2
yunosaccount
Yunos Account API https://open.taobao.com/API.htm?docId=27319&docType=2
Yunos Account API https://open.taobao.com/API.htm?docId=27319&docType=2
yunosad
YunOS-广告 https://open.taobao.com/API.htm?docId=29086&docType=2
YunOS-广告 https://open.taobao.com/API.htm?docId=29086&docType=2
yunosappstore
ALiOS应用中心 https://open.taobao.com/API.htm?docId=35428&docType=2
ALiOS应用中心 https://open.taobao.com/API.htm?docId=35428&docType=2
yunosdm
教育账号 API https://open.taobao.com/API.htm?docId=35502&docType=2
教育账号 API https://open.taobao.com/API.htm?docId=35502&docType=2
yunosminiapp
小程序API https://open.taobao.com/API.htm?docId=54992&docType=2
小程序API https://open.taobao.com/API.htm?docId=54992&docType=2
zqs
周期购API https://open.taobao.com/API.htm?docId=55500&docType=2
周期购API https://open.taobao.com/API.htm?docId=55500&docType=2
SDK 核心包,包含SDKClient
SDK 核心包,包含SDKClient
下载淘宝API文档metadata, 生成Golang SDK
下载淘宝API文档metadata, 生成Golang SDK
API请求及返回对象结构体
API请求及返回对象结构体
admarket
ALIOS广告平台 model https://open.taobao.com/API.htm?docId=37669&docType=2
ALIOS广告平台 model https://open.taobao.com/API.htm?docId=37669&docType=2
aecreatives
Promotion Creatives model https://open.taobao.com/API.htm?docId=45801&docType=2
Promotion Creatives model https://open.taobao.com/API.htm?docId=45801&docType=2
aedata
Data Reports model https://open.taobao.com/API.htm?docId=45807&docType=2
Data Reports model https://open.taobao.com/API.htm?docId=45807&docType=2
aedropshiper
AE-Dropshipper model https://open.taobao.com/API.htm?docId=39371&docType=2
AE-Dropshipper model https://open.taobao.com/API.htm?docId=39371&docType=2
aesolution
AE-Oversea-Solution model https://open.taobao.com/API.htm?docId=47378&docType=2
AE-Oversea-Solution model https://open.taobao.com/API.htm?docId=47378&docType=2
aetask
AE任务开放平台 model https://open.taobao.com/API.htm?docId=53415&docType=2
AE任务开放平台 model https://open.taobao.com/API.htm?docId=53415&docType=2
aetools
Efficient Tools model https://open.taobao.com/API.htm?docId=45804&docType=2
Efficient Tools model https://open.taobao.com/API.htm?docId=45804&docType=2
aeusergrowth
AE-UserOpen-Recommend model https://open.taobao.com/API.htm?docId=45722&docType=2
AE-UserOpen-Recommend model https://open.taobao.com/API.htm?docId=45722&docType=2
aiar
AILAB图像算法API model https://open.taobao.com/API.htm?docId=37057&docType=2
AILAB图像算法API model https://open.taobao.com/API.htm?docId=37057&docType=2
alicom
阿里通信API model https://open.taobao.com/API.htm?docId=29701&docType=2
阿里通信API model https://open.taobao.com/API.htm?docId=29701&docType=2
alidoc
阿里健康处方药平台 model https://open.taobao.com/API.htm?docId=44810&docType=2
阿里健康处方药平台 model https://open.taobao.com/API.htm?docId=44810&docType=2
aliexpress
aliExpress model https://open.taobao.com/API.htm?docId=54728&docType=2
aliExpress model https://open.taobao.com/API.htm?docId=54728&docType=2
aliexpresssumaitong
全球速卖通 model https://open.taobao.com/API.htm?docId=56229&docType=2
全球速卖通 model https://open.taobao.com/API.htm?docId=56229&docType=2
aligenie
阿里精灵基础能力接口 model https://open.taobao.com/API.htm?docId=39668&docType=2
阿里精灵基础能力接口 model https://open.taobao.com/API.htm?docId=39668&docType=2
alihealth
阿里健康医 model https://open.taobao.com/API.htm?docId=42645&docType=2
阿里健康医 model https://open.taobao.com/API.htm?docId=42645&docType=2
alihealth2
阿里健康API model https://open.taobao.com/API.htm?docId=43381&docType=2
阿里健康API model https://open.taobao.com/API.htm?docId=43381&docType=2
alihealthalgo
阿里健康算法 model https://open.taobao.com/API.htm?docId=48492&docType=2
阿里健康算法 model https://open.taobao.com/API.htm?docId=48492&docType=2
alihealthcert
阿里健康-健康证 model https://open.taobao.com/API.htm?docId=54140&docType=2
阿里健康-健康证 model https://open.taobao.com/API.htm?docId=54140&docType=2
alihealthcrm
阿里健康-会员管理 model https://open.taobao.com/API.htm?docId=46804&docType=2
阿里健康-会员管理 model https://open.taobao.com/API.htm?docId=46804&docType=2
alihealthlab
阿里健康-检测检验-预约 model https://open.taobao.com/API.htm?docId=51444&docType=2
阿里健康-检测检验-预约 model https://open.taobao.com/API.htm?docId=51444&docType=2
alihealthmdeer
医知鹿-视频 model https://open.taobao.com/API.htm?docId=46849&docType=2
医知鹿-视频 model https://open.taobao.com/API.htm?docId=46849&docType=2
alihealthmedical
阿里健康三方机构 model https://open.taobao.com/API.htm?docId=51290&docType=2
阿里健康三方机构 model https://open.taobao.com/API.htm?docId=51290&docType=2
alihealthoutflow
阿里健康医生 model https://open.taobao.com/API.htm?docId=43570&docType=2
阿里健康医生 model https://open.taobao.com/API.htm?docId=43570&docType=2
alihealthpw
阿里健康公益线API model https://open.taobao.com/API.htm?docId=56009&docType=2
阿里健康公益线API model https://open.taobao.com/API.htm?docId=56009&docType=2
alihouse
天猫好房工具API model https://open.taobao.com/API.htm?docId=56032&docType=2
天猫好房工具API model https://open.taobao.com/API.htm?docId=56032&docType=2
alilabs
人工智能实验室开放平台API model https://open.taobao.com/API.htm?docId=45531&docType=2
人工智能实验室开放平台API model https://open.taobao.com/API.htm?docId=45531&docType=2
alime
小蜜API model https://open.taobao.com/API.htm?docId=44065&docType=2
小蜜API model https://open.taobao.com/API.htm?docId=44065&docType=2
alimember
全域会员通 model https://open.taobao.com/API.htm?docId=46937&docType=2
全域会员通 model https://open.taobao.com/API.htm?docId=46937&docType=2
alimsg
消息API model https://open.taobao.com/API.htm?docId=56166&docType=2
消息API model https://open.taobao.com/API.htm?docId=56166&docType=2
alink
物联API model https://open.taobao.com/API.htm?docId=28313&docType=2
物联API model https://open.taobao.com/API.htm?docId=28313&docType=2
aliospay
AliOS支付API model https://open.taobao.com/API.htm?docId=45261&docType=2
AliOS支付API model https://open.taobao.com/API.htm?docId=45261&docType=2
aliqin
阿里大于API model https://open.taobao.com/API.htm?docId=28647&docType=2
阿里大于API model https://open.taobao.com/API.htm?docId=28647&docType=2
alisports
阿里体育API model https://open.taobao.com/API.htm?docId=41267&docType=2
阿里体育API model https://open.taobao.com/API.htm?docId=41267&docType=2
alitripbp
飞猪商业化API model https://open.taobao.com/API.htm?docId=55665&docType=2
飞猪商业化API model https://open.taobao.com/API.htm?docId=55665&docType=2
alitripcar
飞猪-综合交通api model https://open.taobao.com/API.htm?docId=53101&docType=2
飞猪-综合交通api model https://open.taobao.com/API.htm?docId=53101&docType=2
alitripdivisions
飞猪行政区划API model https://open.taobao.com/API.htm?docId=31375&docType=2
飞猪行政区划API model https://open.taobao.com/API.htm?docId=31375&docType=2
alitripmerchant
飞猪商家平台 model https://open.taobao.com/API.htm?docId=54748&docType=2
飞猪商家平台 model https://open.taobao.com/API.htm?docId=54748&docType=2
alitrippoi
飞猪POI数据API model https://open.taobao.com/API.htm?docId=45315&docType=2
飞猪POI数据API model https://open.taobao.com/API.htm?docId=45315&docType=2
alitripreceipt
飞猪发票 model https://open.taobao.com/API.htm?docId=51546&docType=2
飞猪发票 model https://open.taobao.com/API.htm?docId=51546&docType=2
aliyun
阿里云API model https://open.taobao.com/API.htm?docId=24304&docType=2
阿里云API model https://open.taobao.com/API.htm?docId=24304&docType=2
aliyunocs
阿里云ocsAPI model https://open.taobao.com/API.htm?docId=24698&docType=2
阿里云ocsAPI model https://open.taobao.com/API.htm?docId=24698&docType=2
alsc
本地生活API model https://open.taobao.com/API.htm?docId=57060&docType=2
本地生活API model https://open.taobao.com/API.htm?docId=57060&docType=2
alscmerchant
本地生活商户基础API model https://open.taobao.com/API.htm?docId=53173&docType=2
本地生活商户基础API model https://open.taobao.com/API.htm?docId=53173&docType=2
antifraud
反欺诈风控API model https://open.taobao.com/API.htm?docId=25505&docType=2
反欺诈风控API model https://open.taobao.com/API.htm?docId=25505&docType=2
ascm
SCM API model https://open.taobao.com/API.htm?docId=36216&docType=2
SCM API model https://open.taobao.com/API.htm?docId=36216&docType=2
ascp
天猫供应 model https://open.taobao.com/API.htm?docId=40826&docType=2
天猫供应 model https://open.taobao.com/API.htm?docId=40826&docType=2
ascpchannel
新零售供应链API model https://open.taobao.com/API.htm?docId=54020&docType=2
新零售供应链API model https://open.taobao.com/API.htm?docId=54020&docType=2
ascpffo
AE-供应链 model https://open.taobao.com/API.htm?docId=56317&docType=2
AE-供应链 model https://open.taobao.com/API.htm?docId=56317&docType=2
ascpqcc
阿里巴巴供应链平台API model https://open.taobao.com/API.htm?docId=32779&docType=2
阿里巴巴供应链平台API model https://open.taobao.com/API.htm?docId=32779&docType=2
auction
司法拍卖 model https://open.taobao.com/API.htm?docId=40551&docType=2
司法拍卖 model https://open.taobao.com/API.htm?docId=40551&docType=2
autonavi
阿里车联网API model https://open.taobao.com/API.htm?docId=24740&docType=2
阿里车联网API model https://open.taobao.com/API.htm?docId=24740&docType=2
axindata
阿信-基础数据 model https://open.taobao.com/API.htm?docId=55968&docType=2
阿信-基础数据 model https://open.taobao.com/API.htm?docId=55968&docType=2
axintrade
阿信-交易API model https://open.taobao.com/API.htm?docId=55695&docType=2
阿信-交易API model https://open.taobao.com/API.htm?docId=55695&docType=2
b2bcert
b2b认证平台api model https://open.taobao.com/API.htm?docId=32288&docType=2
b2b认证平台api model https://open.taobao.com/API.htm?docId=32288&docType=2
baichuan
百川 model https://open.taobao.com/API.htm?docId=31057&docType=2
百川 model https://open.taobao.com/API.htm?docId=31057&docType=2
baichuanctg
百川-ctg model https://open.taobao.com/API.htm?docId=28682&docType=2
百川-ctg model https://open.taobao.com/API.htm?docId=28682&docType=2
baodian
宝点API model https://open.taobao.com/API.htm?docId=22800&docType=2
宝点API model https://open.taobao.com/API.htm?docId=22800&docType=2
baoxian
保险API model https://open.taobao.com/API.htm?docId=37741&docType=2
保险API model https://open.taobao.com/API.htm?docId=37741&docType=2
beehive
淘宝内容API model https://open.taobao.com/API.htm?docId=27196&docType=2
淘宝内容API model https://open.taobao.com/API.htm?docId=27196&docType=2
bill
账务API model https://open.taobao.com/API.htm?docId=21709&docType=2
账务API model https://open.taobao.com/API.htm?docId=21709&docType=2
blackvip
会员卡 model https://open.taobao.com/API.htm?docId=46278&docType=2
会员卡 model https://open.taobao.com/API.htm?docId=46278&docType=2
brandhub
品效API model https://open.taobao.com/API.htm?docId=36460&docType=2
品效API model https://open.taobao.com/API.htm?docId=36460&docType=2
btrip
商旅API model https://open.taobao.com/API.htm?docId=33169&docType=2
商旅API model https://open.taobao.com/API.htm?docId=33169&docType=2
bus
汽车票API model https://open.taobao.com/API.htm?docId=52971&docType=2
汽车票API model https://open.taobao.com/API.htm?docId=52971&docType=2
c2m
淘宝C2M model https://open.taobao.com/API.htm?docId=51314&docType=2
淘宝C2M model https://open.taobao.com/API.htm?docId=51314&docType=2
cainiaocntec
菜鸟末端商业 model https://open.taobao.com/API.htm?docId=46493&docType=2
菜鸟末端商业 model https://open.taobao.com/API.htm?docId=46493&docType=2
cainiaoecc
菜鸟控制塔API model https://open.taobao.com/API.htm?docId=43854&docType=2
菜鸟控制塔API model https://open.taobao.com/API.htm?docId=43854&docType=2
cainiaohandover
菜鸟国际出口 model https://open.taobao.com/API.htm?docId=46429&docType=2
菜鸟国际出口 model https://open.taobao.com/API.htm?docId=46429&docType=2
cainiaolocker
菜鸟裹裹API model https://open.taobao.com/API.htm?docId=31197&docType=2
菜鸟裹裹API model https://open.taobao.com/API.htm?docId=31197&docType=2
cainiaoncwl
菜鸟农村物流 model https://open.taobao.com/API.htm?docId=27588&docType=2
菜鸟农村物流 model https://open.taobao.com/API.htm?docId=27588&docType=2
caipiao
彩票API model https://open.taobao.com/API.htm?docId=21828&docType=2
彩票API model https://open.taobao.com/API.htm?docId=21828&docType=2
campus
智慧园区API model https://open.taobao.com/API.htm?docId=32226&docType=2
智慧园区API model https://open.taobao.com/API.htm?docId=32226&docType=2
car
旅行用车API model https://open.taobao.com/API.htm?docId=44234&docType=2
旅行用车API model https://open.taobao.com/API.htm?docId=44234&docType=2
category
类目API model https://open.taobao.com/API.htm?docId=47659&docType=2
类目API model https://open.taobao.com/API.htm?docId=47659&docType=2
charity
公益三小时公共 model https://open.taobao.com/API.htm?docId=45562&docType=2
公益三小时公共 model https://open.taobao.com/API.htm?docId=45562&docType=2
choujiang
淘宝抽奖平台API model https://open.taobao.com/API.htm?docId=23213&docType=2
淘宝抽奖平台API model https://open.taobao.com/API.htm?docId=23213&docType=2
cityretail
淘宝同城API model https://open.taobao.com/API.htm?docId=51645&docType=2
淘宝同城API model https://open.taobao.com/API.htm?docId=51645&docType=2
cloudgame
云游戏API model https://open.taobao.com/API.htm?docId=55012&docType=2
云游戏API model https://open.taobao.com/API.htm?docId=55012&docType=2
cloudpush
百川推送 model https://open.taobao.com/API.htm?docId=25038&docType=2
百川推送 model https://open.taobao.com/API.htm?docId=25038&docType=2
cmns
yunos推送服务api model https://open.taobao.com/API.htm?docId=49740&docType=2
yunos推送服务api model https://open.taobao.com/API.htm?docId=49740&docType=2
cntms
菜鸟配送API model https://open.taobao.com/API.htm?docId=25659&docType=2
菜鸟配送API model https://open.taobao.com/API.htm?docId=25659&docType=2
consignplatform
菜鸟发货工作台API model https://open.taobao.com/API.htm?docId=47727&docType=2
菜鸟发货工作台API model https://open.taobao.com/API.htm?docId=47727&docType=2
crm
店铺会员管理API model https://open.taobao.com/API.htm?docId=25584&docType=2
店铺会员管理API model https://open.taobao.com/API.htm?docId=25584&docType=2
customizemarket
淘宝定制行业API model https://open.taobao.com/API.htm?docId=28671&docType=2
淘宝定制行业API model https://open.taobao.com/API.htm?docId=28671&docType=2
damai
大麦API model https://open.taobao.com/API.htm?docId=39475&docType=2
大麦API model https://open.taobao.com/API.htm?docId=39475&docType=2
damaiticklet
大麦第三方商家接入API model https://open.taobao.com/API.htm?docId=55148&docType=2
大麦第三方商家接入API model https://open.taobao.com/API.htm?docId=55148&docType=2
degoperation
激励API model https://open.taobao.com/API.htm?docId=38249&docType=2
激励API model https://open.taobao.com/API.htm?docId=38249&docType=2
deliveryvoucher
淘宝卡券平台 model https://open.taobao.com/API.htm?docId=29874&docType=2
淘宝卡券平台 model https://open.taobao.com/API.htm?docId=29874&docType=2
dengta
阿里影业灯塔 model https://open.taobao.com/API.htm?docId=50713&docType=2
阿里影业灯塔 model https://open.taobao.com/API.htm?docId=50713&docType=2
dmp
DMP API model https://open.taobao.com/API.htm?docId=23625&docType=2
DMP API model https://open.taobao.com/API.htm?docId=23625&docType=2
drug
阿里健康药API model https://open.taobao.com/API.htm?docId=50465&docType=2
阿里健康药API model https://open.taobao.com/API.htm?docId=50465&docType=2
drugtrace
阿里健康追溯码 model https://open.taobao.com/API.htm?docId=40971&docType=2
阿里健康追溯码 model https://open.taobao.com/API.htm?docId=40971&docType=2
dt
数据API model https://open.taobao.com/API.htm?docId=38780&docType=2
数据API model https://open.taobao.com/API.htm?docId=38780&docType=2
dutyfree
海南离岛对外API model https://open.taobao.com/API.htm?docId=56257&docType=2
海南离岛对外API model https://open.taobao.com/API.htm?docId=56257&docType=2
einvoice
电子发票 model https://open.taobao.com/API.htm?docId=27764&docType=2
电子发票 model https://open.taobao.com/API.htm?docId=27764&docType=2
eleenterprisecartnew
企业订餐购物车API model https://open.taobao.com/API.htm?docId=49011&docType=2
企业订餐购物车API model https://open.taobao.com/API.htm?docId=49011&docType=2
eleenterprisecoupon
企业订餐优惠券API model https://open.taobao.com/API.htm?docId=49008&docType=2
企业订餐优惠券API model https://open.taobao.com/API.htm?docId=49008&docType=2
eleenterpriseemployee
企业订餐员工API model https://open.taobao.com/API.htm?docId=48679&docType=2
企业订餐员工API model https://open.taobao.com/API.htm?docId=48679&docType=2
eleenterpriseordernew
企业订餐订单API model https://open.taobao.com/API.htm?docId=49014&docType=2
企业订餐订单API model https://open.taobao.com/API.htm?docId=49014&docType=2
eleenterpriserestaurant
企业订餐店铺接口 model https://open.taobao.com/API.htm?docId=49167&docType=2
企业订餐店铺接口 model https://open.taobao.com/API.htm?docId=49167&docType=2
elife
生活汇API model https://open.taobao.com/API.htm?docId=26189&docType=2
生活汇API model https://open.taobao.com/API.htm?docId=26189&docType=2
eticket
电子物流API model https://open.taobao.com/API.htm?docId=27156&docType=2
电子物流API model https://open.taobao.com/API.htm?docId=27156&docType=2
examination
体检机构API model https://open.taobao.com/API.htm?docId=41650&docType=2
体检机构API model https://open.taobao.com/API.htm?docId=41650&docType=2
exchange
换货API model https://open.taobao.com/API.htm?docId=31202&docType=2
换货API model https://open.taobao.com/API.htm?docId=31202&docType=2
fans
互动吧API model https://open.taobao.com/API.htm?docId=44032&docType=2
互动吧API model https://open.taobao.com/API.htm?docId=44032&docType=2
feedflow
信息流API model https://open.taobao.com/API.htm?docId=43248&docType=2
信息流API model https://open.taobao.com/API.htm?docId=43248&docType=2
fenxiao
分销API model https://open.taobao.com/API.htm?docId=55750&docType=2
分销API model https://open.taobao.com/API.htm?docId=55750&docType=2
film
电影票API model https://open.taobao.com/API.htm?docId=45077&docType=2
电影票API model https://open.taobao.com/API.htm?docId=45077&docType=2
filmtfavatar
影城自运营开放Api model https://open.taobao.com/API.htm?docId=46972&docType=2
影城自运营开放Api model https://open.taobao.com/API.htm?docId=46972&docType=2
fivee
资质共享API model https://open.taobao.com/API.htm?docId=42262&docType=2
资质共享API model https://open.taobao.com/API.htm?docId=42262&docType=2
flight
机票API model https://open.taobao.com/API.htm?docId=54268&docType=2
机票API model https://open.taobao.com/API.htm?docId=54268&docType=2
flightuppc
飞猪机票前台类目 model https://open.taobao.com/API.htm?docId=42575&docType=2
飞猪机票前台类目 model https://open.taobao.com/API.htm?docId=42575&docType=2
foodscan
脚模API model https://open.taobao.com/API.htm?docId=50512&docType=2
脚模API model https://open.taobao.com/API.htm?docId=50512&docType=2
fpm
企业运营平台-集团财 model https://open.taobao.com/API.htm?docId=33937&docType=2
企业运营平台-集团财 model https://open.taobao.com/API.htm?docId=33937&docType=2
fundplatform
汇金API model https://open.taobao.com/API.htm?docId=30278&docType=2
汇金API model https://open.taobao.com/API.htm?docId=30278&docType=2
game
淘宝游戏API model https://open.taobao.com/API.htm?docId=45035&docType=2
淘宝游戏API model https://open.taobao.com/API.htm?docId=45035&docType=2
gameact
游戏激励平台API model https://open.taobao.com/API.htm?docId=25396&docType=2
游戏激励平台API model https://open.taobao.com/API.htm?docId=25396&docType=2
globalvirtual
国际虚拟API model https://open.taobao.com/API.htm?docId=48538&docType=2
国际虚拟API model https://open.taobao.com/API.htm?docId=48538&docType=2
guoguo
菜鸟无线API model https://open.taobao.com/API.htm?docId=26056&docType=2
菜鸟无线API model https://open.taobao.com/API.htm?docId=26056&docType=2
happytrip
欢行开发平台API model https://open.taobao.com/API.htm?docId=47501&docType=2
欢行开发平台API model https://open.taobao.com/API.htm?docId=47501&docType=2
healthnr
阿里健康新零售 model https://open.taobao.com/API.htm?docId=41387&docType=2
阿里健康新零售 model https://open.taobao.com/API.htm?docId=41387&docType=2
homeai
HOMEAI model https://open.taobao.com/API.htm?docId=41831&docType=2
HOMEAI model https://open.taobao.com/API.htm?docId=41831&docType=2
hotel
酒店导购API model https://open.taobao.com/API.htm?docId=35264&docType=2
酒店导购API model https://open.taobao.com/API.htm?docId=35264&docType=2
hotelalliance
飞猪酒店签约中心 model https://open.taobao.com/API.htm?docId=49754&docType=2
飞猪酒店签约中心 model https://open.taobao.com/API.htm?docId=49754&docType=2
hotelhstdf
飞猪酒店标准库 model https://open.taobao.com/API.htm?docId=44900&docType=2
飞猪酒店标准库 model https://open.taobao.com/API.htm?docId=44900&docType=2
icbu
国际站商品API model https://open.taobao.com/API.htm?docId=25348&docType=2
国际站商品API model https://open.taobao.com/API.htm?docId=25348&docType=2
icbuassurance
ICBU-信保 model https://open.taobao.com/API.htm?docId=31686&docType=2
ICBU-信保 model https://open.taobao.com/API.htm?docId=31686&docType=2
icbudropshipping
ICBU-DropShipping model https://open.taobao.com/API.htm?docId=54908&docType=2
ICBU-DropShipping model https://open.taobao.com/API.htm?docId=54908&docType=2
icbulogistics
ICBU-物流 model https://open.taobao.com/API.htm?docId=47959&docType=2
ICBU-物流 model https://open.taobao.com/API.htm?docId=47959&docType=2
icbuproduct
ICBU商品api model https://open.taobao.com/API.htm?docId=50558&docType=2
ICBU商品api model https://open.taobao.com/API.htm?docId=50558&docType=2
icburfq
ICBU-RFQ model https://open.taobao.com/API.htm?docId=40805&docType=2
ICBU-RFQ model https://open.taobao.com/API.htm?docId=40805&docType=2
icbuseller
ICBU卖家API model https://open.taobao.com/API.htm?docId=51234&docType=2
ICBU卖家API model https://open.taobao.com/API.htm?docId=51234&docType=2
icbushowcase
ICBU-橱 model https://open.taobao.com/API.htm?docId=40964&docType=2
ICBU-橱 model https://open.taobao.com/API.htm?docId=40964&docType=2
idle
闲鱼 model https://open.taobao.com/API.htm?docId=48312&docType=2
闲鱼 model https://open.taobao.com/API.htm?docId=48312&docType=2
idleisv
闲鱼已验货 model https://open.taobao.com/API.htm?docId=49487&docType=2
闲鱼已验货 model https://open.taobao.com/API.htm?docId=49487&docType=2
idleitem
闲鱼发布 model https://open.taobao.com/API.htm?docId=39868&docType=2
闲鱼发布 model https://open.taobao.com/API.htm?docId=39868&docType=2
idleparttime
闲鱼兼职 model https://open.taobao.com/API.htm?docId=52622&docType=2
闲鱼兼职 model https://open.taobao.com/API.htm?docId=52622&docType=2
ieagency
国际机票订单API model https://open.taobao.com/API.htm?docId=27905&docType=2
国际机票订单API model https://open.taobao.com/API.htm?docId=27905&docType=2
ihome
iHome API model https://open.taobao.com/API.htm?docId=43219&docType=2
iHome API model https://open.taobao.com/API.htm?docId=43219&docType=2
interact
天猫互动接口 model https://open.taobao.com/API.htm?docId=25768&docType=2
天猫互动接口 model https://open.taobao.com/API.htm?docId=25768&docType=2
interactvip
会员中心API model https://open.taobao.com/API.htm?docId=29108&docType=2
会员中心API model https://open.taobao.com/API.htm?docId=29108&docType=2
inventory
库存API model https://open.taobao.com/API.htm?docId=31754&docType=2
库存API model https://open.taobao.com/API.htm?docId=31754&docType=2
iot
智能设备 model https://open.taobao.com/API.htm?docId=40674&docType=2
智能设备 model https://open.taobao.com/API.htm?docId=40674&docType=2
ioti
IoTI API model https://open.taobao.com/API.htm?docId=46348&docType=2
IoTI API model https://open.taobao.com/API.htm?docId=46348&docType=2
iotticket
IoT售后解决方案API model https://open.taobao.com/API.htm?docId=50245&docType=2
IoT售后解决方案API model https://open.taobao.com/API.htm?docId=50245&docType=2
itpolicy
国际机票政策API model https://open.taobao.com/API.htm?docId=25494&docType=2
国际机票政策API model https://open.taobao.com/API.htm?docId=25494&docType=2
jae
JAE model https://open.taobao.com/API.htm?docId=30901&docType=2
JAE model https://open.taobao.com/API.htm?docId=30901&docType=2
jipiao
国内机票订单API model https://open.taobao.com/API.htm?docId=26565&docType=2
国内机票订单API model https://open.taobao.com/API.htm?docId=26565&docType=2
jms
ONS消息服务 model https://open.taobao.com/API.htm?docId=25635&docType=2
ONS消息服务 model https://open.taobao.com/API.htm?docId=25635&docType=2
jst
聚石塔API model https://open.taobao.com/API.htm?docId=55254&docType=2
聚石塔API model https://open.taobao.com/API.htm?docId=55254&docType=2
jstinteractive
互动开放API model https://open.taobao.com/API.htm?docId=53888&docType=2
互动开放API model https://open.taobao.com/API.htm?docId=53888&docType=2
jstsecret
聚石塔隐私号 model https://open.taobao.com/API.htm?docId=52636&docType=2
聚石塔隐私号 model https://open.taobao.com/API.htm?docId=52636&docType=2
ju
聚划算API model https://open.taobao.com/API.htm?docId=28762&docType=2
聚划算API model https://open.taobao.com/API.htm?docId=28762&docType=2
jym
交易猫API model https://open.taobao.com/API.htm?docId=46489&docType=2
交易猫API model https://open.taobao.com/API.htm?docId=46489&docType=2
kbalgo
本地生活内容API model https://open.taobao.com/API.htm?docId=54328&docType=2
本地生活内容API model https://open.taobao.com/API.htm?docId=54328&docType=2
kclub
知识库API model https://open.taobao.com/API.htm?docId=38771&docType=2
知识库API model https://open.taobao.com/API.htm?docId=38771&docType=2
koubeimall
口碑综合体API model https://open.taobao.com/API.htm?docId=49834&docType=2
口碑综合体API model https://open.taobao.com/API.htm?docId=49834&docType=2
larkiot
阿里影业云智API model https://open.taobao.com/API.htm?docId=42042&docType=2
阿里影业云智API model https://open.taobao.com/API.htm?docId=42042&docType=2
lbs
地动仪 model https://open.taobao.com/API.htm?docId=37287&docType=2
地动仪 model https://open.taobao.com/API.htm?docId=37287&docType=2
legalcase
法务诉讼对外API model https://open.taobao.com/API.htm?docId=53340&docType=2
法务诉讼对外API model https://open.taobao.com/API.htm?docId=53340&docType=2
legalsuit
司法开放平台 model https://open.taobao.com/API.htm?docId=43036&docType=2
司法开放平台 model https://open.taobao.com/API.htm?docId=43036&docType=2
lifeservice
生活服务API model https://open.taobao.com/API.htm?docId=50111&docType=2
生活服务API model https://open.taobao.com/API.htm?docId=50111&docType=2
logistic
物流API model https://open.taobao.com/API.htm?docId=47316&docType=2
物流API model https://open.taobao.com/API.htm?docId=47316&docType=2
lstbm
零售通门店API model https://open.taobao.com/API.htm?docId=43687&docType=2
零售通门店API model https://open.taobao.com/API.htm?docId=43687&docType=2
lstfundbill
零售通结算API model https://open.taobao.com/API.htm?docId=46608&docType=2
零售通结算API model https://open.taobao.com/API.htm?docId=46608&docType=2
lsticitem
零售通商品API model https://open.taobao.com/API.htm?docId=47318&docType=2
零售通商品API model https://open.taobao.com/API.htm?docId=47318&docType=2
lstlogistics
零售通订单履行 model https://open.taobao.com/API.htm?docId=53484&docType=2
零售通订单履行 model https://open.taobao.com/API.htm?docId=53484&docType=2
lstlogistics2
零售通履单API model https://open.taobao.com/API.htm?docId=53482&docType=2
零售通履单API model https://open.taobao.com/API.htm?docId=53482&docType=2
lstmarketing
零售通营销API model https://open.taobao.com/API.htm?docId=44185&docType=2
零售通营销API model https://open.taobao.com/API.htm?docId=44185&docType=2
lstpos
零售通智能POS开放 model https://open.taobao.com/API.htm?docId=32945&docType=2
零售通智能POS开放 model https://open.taobao.com/API.htm?docId=32945&docType=2
lstspeacker
零售通小店智能设备 model https://open.taobao.com/API.htm?docId=45361&docType=2
零售通小店智能设备 model https://open.taobao.com/API.htm?docId=45361&docType=2
lsttrade
零售通交易API model https://open.taobao.com/API.htm?docId=47800&docType=2
零售通交易API model https://open.taobao.com/API.htm?docId=47800&docType=2
lstvending
零售通自动售货机 model https://open.taobao.com/API.htm?docId=37506&docType=2
零售通自动售货机 model https://open.taobao.com/API.htm?docId=37506&docType=2
lstwarehouse
零售通仓储API model https://open.taobao.com/API.htm?docId=53981&docType=2
零售通仓储API model https://open.taobao.com/API.htm?docId=53981&docType=2
ma
码上淘API model https://open.taobao.com/API.htm?docId=23660&docType=2
码上淘API model https://open.taobao.com/API.htm?docId=23660&docType=2
maitix
大麦票务云分销API model https://open.taobao.com/API.htm?docId=49119&docType=2
大麦票务云分销API model https://open.taobao.com/API.htm?docId=49119&docType=2
mc
云码API model https://open.taobao.com/API.htm?docId=47156&docType=2
云码API model https://open.taobao.com/API.htm?docId=47156&docType=2
media
多媒体平台API model https://open.taobao.com/API.htm?docId=27943&docType=2
多媒体平台API model https://open.taobao.com/API.htm?docId=27943&docType=2
medicalbase
阿里健康挂号号源直连 model https://open.taobao.com/API.htm?docId=55216&docType=2
阿里健康挂号号源直连 model https://open.taobao.com/API.htm?docId=55216&docType=2
mei
天猫美妆API model https://open.taobao.com/API.htm?docId=25013&docType=2
天猫美妆API model https://open.taobao.com/API.htm?docId=25013&docType=2
middleclaims
国际化中台服务域保险 model https://open.taobao.com/API.htm?docId=53335&docType=2
国际化中台服务域保险 model https://open.taobao.com/API.htm?docId=53335&docType=2
miniapp
淘宝小程序API model https://open.taobao.com/API.htm?docId=54266&docType=2
淘宝小程序API model https://open.taobao.com/API.htm?docId=54266&docType=2
miniappcloud
商家应用 model https://open.taobao.com/API.htm?docId=46995&docType=2
商家应用 model https://open.taobao.com/API.htm?docId=46995&docType=2
miniappopen
miniapp开放API model https://open.taobao.com/API.htm?docId=51768&docType=2
miniapp开放API model https://open.taobao.com/API.htm?docId=51768&docType=2
mirage
优酷播控幻影API model https://open.taobao.com/API.htm?docId=43082&docType=2
优酷播控幻影API model https://open.taobao.com/API.htm?docId=43082&docType=2
mos
喵街API model https://open.taobao.com/API.htm?docId=55338&docType=2
喵街API model https://open.taobao.com/API.htm?docId=55338&docType=2
moscm
银泰scm-openapi model https://open.taobao.com/API.htm?docId=41072&docType=2
银泰scm-openapi model https://open.taobao.com/API.htm?docId=41072&docType=2
mozi
MOZI账号API model https://open.taobao.com/API.htm?docId=45946&docType=2
MOZI账号API model https://open.taobao.com/API.htm?docId=45946&docType=2
moziacl
MOZI权限API model https://open.taobao.com/API.htm?docId=45484&docType=2
MOZI权限API model https://open.taobao.com/API.htm?docId=45484&docType=2
mozivds
MOZI 租户 model https://open.taobao.com/API.htm?docId=51055&docType=2
MOZI 租户 model https://open.taobao.com/API.htm?docId=51055&docType=2
msgamp
消息amp通道 model https://open.taobao.com/API.htm?docId=50611&docType=2
消息amp通道 model https://open.taobao.com/API.htm?docId=50611&docType=2
mtop
手机淘宝API model https://open.taobao.com/API.htm?docId=23431&docType=2
手机淘宝API model https://open.taobao.com/API.htm?docId=23431&docType=2
mtopopen
手淘开放API model https://open.taobao.com/API.htm?docId=26114&docType=2
手淘开放API model https://open.taobao.com/API.htm?docId=26114&docType=2
mydata
国际站数据管 model https://open.taobao.com/API.htm?docId=26908&docType=2
国际站数据管 model https://open.taobao.com/API.htm?docId=26908&docType=2
nazca
网上法庭对外API model https://open.taobao.com/API.htm?docId=27772&docType=2
网上法庭对外API model https://open.taobao.com/API.htm?docId=27772&docType=2
newretail
新零售API model https://open.taobao.com/API.htm?docId=44781&docType=2
新零售API model https://open.taobao.com/API.htm?docId=44781&docType=2
nlife
零售plus model https://open.taobao.com/API.htm?docId=36762&docType=2
零售plus model https://open.taobao.com/API.htm?docId=36762&docType=2
nlp
文本算法API model https://open.taobao.com/API.htm?docId=26130&docType=2
文本算法API model https://open.taobao.com/API.htm?docId=26130&docType=2
normalvisa
度假-签证管理API model https://open.taobao.com/API.htm?docId=44453&docType=2
度假-签证管理API model https://open.taobao.com/API.htm?docId=44453&docType=2
nropen
新零售开放API model https://open.taobao.com/API.htm?docId=50091&docType=2
新零售开放API model https://open.taobao.com/API.htm?docId=50091&docType=2
nrpos
新零售POS model https://open.taobao.com/API.htm?docId=42992&docType=2
新零售POS model https://open.taobao.com/API.htm?docId=42992&docType=2
nrt
零售终端API model https://open.taobao.com/API.htm?docId=35424&docType=2
零售终端API model https://open.taobao.com/API.htm?docId=35424&docType=2
omniorder
全渠道API model https://open.taobao.com/API.htm?docId=42927&docType=2
全渠道API model https://open.taobao.com/API.htm?docId=42927&docType=2
openim
openimAPI model https://open.taobao.com/API.htm?docId=25766&docType=2
openimAPI model https://open.taobao.com/API.htm?docId=25766&docType=2
openmall
OpenMall-API model https://open.taobao.com/API.htm?docId=50836&docType=2
OpenMall-API model https://open.taobao.com/API.htm?docId=50836&docType=2
opentrade
交易开放 model https://open.taobao.com/API.htm?docId=49615&docType=2
交易开放 model https://open.taobao.com/API.htm?docId=49615&docType=2
ott
桌面API model https://open.taobao.com/API.htm?docId=29910&docType=2
桌面API model https://open.taobao.com/API.htm?docId=29910&docType=2
ottpay
ott支付 model https://open.taobao.com/API.htm?docId=46647&docType=2
ott支付 model https://open.taobao.com/API.htm?docId=46647&docType=2
oversea
跨境API model https://open.taobao.com/API.htm?docId=28703&docType=2
跨境API model https://open.taobao.com/API.htm?docId=28703&docType=2
paimai
拍卖API model https://open.taobao.com/API.htm?docId=38618&docType=2
拍卖API model https://open.taobao.com/API.htm?docId=38618&docType=2
pentraprism
五棱镜任务API model https://open.taobao.com/API.htm?docId=52767&docType=2
五棱镜任务API model https://open.taobao.com/API.htm?docId=52767&docType=2
perfect
同城零售全渠道 model https://open.taobao.com/API.htm?docId=53988&docType=2
同城零售全渠道 model https://open.taobao.com/API.htm?docId=53988&docType=2
product
商品API model https://open.taobao.com/API.htm?docId=38593&docType=2
商品API model https://open.taobao.com/API.htm?docId=38593&docType=2
promotion
营销API model https://open.taobao.com/API.htm?docId=50923&docType=2
营销API model https://open.taobao.com/API.htm?docId=50923&docType=2
pur
信息平台-采购 model https://open.taobao.com/API.htm?docId=38501&docType=2
信息平台-采购 model https://open.taobao.com/API.htm?docId=38501&docType=2
qianniu
千牛接口 model https://open.taobao.com/API.htm?docId=27244&docType=2
千牛接口 model https://open.taobao.com/API.htm?docId=27244&docType=2
qimen
奇门仓储API model https://open.taobao.com/API.htm?docId=29364&docType=2
奇门仓储API model https://open.taobao.com/API.htm?docId=29364&docType=2
qt
质检品控API model https://open.taobao.com/API.htm?docId=10902&docType=2
质检品控API model https://open.taobao.com/API.htm?docId=10902&docType=2
rail
国际火车票API model https://open.taobao.com/API.htm?docId=47364&docType=2
国际火车票API model https://open.taobao.com/API.htm?docId=47364&docType=2
refund
退款API model https://open.taobao.com/API.htm?docId=46784&docType=2
退款API model https://open.taobao.com/API.htm?docId=46784&docType=2
retail
天猫门店API model https://open.taobao.com/API.htm?docId=31454&docType=2
天猫门店API model https://open.taobao.com/API.htm?docId=31454&docType=2
rhino
新制造API model https://open.taobao.com/API.htm?docId=39534&docType=2
新制造API model https://open.taobao.com/API.htm?docId=39534&docType=2
scbp
国际站外贸直通车API model https://open.taobao.com/API.htm?docId=25200&docType=2
国际站外贸直通车API model https://open.taobao.com/API.htm?docId=25200&docType=2
scs
阿里妈妈广告中心API model https://open.taobao.com/API.htm?docId=47165&docType=2
阿里妈妈广告中心API model https://open.taobao.com/API.htm?docId=47165&docType=2
seaking
阿里翻译API model https://open.taobao.com/API.htm?docId=51871&docType=2
阿里翻译API model https://open.taobao.com/API.htm?docId=51871&docType=2
security
聚安全API model https://open.taobao.com/API.htm?docId=27312&docType=2
聚安全API model https://open.taobao.com/API.htm?docId=27312&docType=2
servicecenter
服务平台API model https://open.taobao.com/API.htm?docId=25687&docType=2
服务平台API model https://open.taobao.com/API.htm?docId=25687&docType=2
shenjing
神鲸应用API model https://open.taobao.com/API.htm?docId=45850&docType=2
神鲸应用API model https://open.taobao.com/API.htm?docId=45850&docType=2
ship
船票API model https://open.taobao.com/API.htm?docId=48055&docType=2
船票API model https://open.taobao.com/API.htm?docId=48055&docType=2
shop
店铺API model https://open.taobao.com/API.htm?docId=30898&docType=2
店铺API model https://open.taobao.com/API.htm?docId=30898&docType=2
simba
直通车API model https://open.taobao.com/API.htm?docId=10551&docType=2
直通车API model https://open.taobao.com/API.htm?docId=10551&docType=2
singletreasure
商家营销中心API model https://open.taobao.com/API.htm?docId=31352&docType=2
商家营销中心API model https://open.taobao.com/API.htm?docId=31352&docType=2
smartstore
智慧门店 model https://open.taobao.com/API.htm?docId=39618&docType=2
智慧门店 model https://open.taobao.com/API.htm?docId=39618&docType=2
store
商户API model https://open.taobao.com/API.htm?docId=50163&docType=2
商户API model https://open.taobao.com/API.htm?docId=50163&docType=2
subuser
子账号管理API model https://open.taobao.com/API.htm?docId=10820&docType=2
子账号管理API model https://open.taobao.com/API.htm?docId=10820&docType=2
sungari
平台治理API model https://open.taobao.com/API.htm?docId=32353&docType=2
平台治理API model https://open.taobao.com/API.htm?docId=32353&docType=2
tanx
Tanx API model https://open.taobao.com/API.htm?docId=25062&docType=2
Tanx API model https://open.taobao.com/API.htm?docId=25062&docType=2
taotv
虚拟院线API model https://open.taobao.com/API.htm?docId=35818&docType=2
虚拟院线API model https://open.taobao.com/API.htm?docId=35818&docType=2
tax
业务平台事业部-税务平台API model https://open.taobao.com/API.htm?docId=41740&docType=2
业务平台事业部-税务平台API model https://open.taobao.com/API.htm?docId=41740&docType=2
tbk
淘宝客API model https://open.taobao.com/API.htm?docId=48340&docType=2
淘宝客API model https://open.taobao.com/API.htm?docId=48340&docType=2
ticket
门票-商品管理API model https://open.taobao.com/API.htm?docId=27945&docType=2
门票-商品管理API model https://open.taobao.com/API.htm?docId=27945&docType=2
tmallcampus
天猫校园API model https://open.taobao.com/API.htm?docId=52079&docType=2
天猫校园API model https://open.taobao.com/API.htm?docId=52079&docType=2
tmallcar
天猫汽车 model https://open.taobao.com/API.htm?docId=41631&docType=2
天猫汽车 model https://open.taobao.com/API.htm?docId=41631&docType=2
tmallcarenter
tmall-carcenter model https://open.taobao.com/API.htm?docId=31209&docType=2
tmall-carcenter model https://open.taobao.com/API.htm?docId=31209&docType=2
tmallchannel
渠道中心API model https://open.taobao.com/API.htm?docId=40706&docType=2
渠道中心API model https://open.taobao.com/API.htm?docId=40706&docType=2
tmallcms
天猫会员积分 model https://open.taobao.com/API.htm?docId=25758&docType=2
天猫会员积分 model https://open.taobao.com/API.htm?docId=25758&docType=2
tmallfcbox
天猫线下大屏 model https://open.taobao.com/API.htm?docId=39240&docType=2
天猫线下大屏 model https://open.taobao.com/API.htm?docId=39240&docType=2
tmallgenie
天猫精灵开放API model https://open.taobao.com/API.htm?docId=36465&docType=2
天猫精灵开放API model https://open.taobao.com/API.htm?docId=36465&docType=2
tmallgeniescp
天猫精灵供应链网关API model https://open.taobao.com/API.htm?docId=53192&docType=2
天猫精灵供应链网关API model https://open.taobao.com/API.htm?docId=53192&docType=2
tmallhk
天猫国际API model https://open.taobao.com/API.htm?docId=51012&docType=2
天猫国际API model https://open.taobao.com/API.htm?docId=51012&docType=2
tmallitem
天猫精品库API model https://open.taobao.com/API.htm?docId=21643&docType=2
天猫精品库API model https://open.taobao.com/API.htm?docId=21643&docType=2
tmallnr
天猫新零售 model https://open.taobao.com/API.htm?docId=55242&docType=2
天猫新零售 model https://open.taobao.com/API.htm?docId=55242&docType=2
tmallsc
天猫服务数据API model https://open.taobao.com/API.htm?docId=53341&docType=2
天猫服务数据API model https://open.taobao.com/API.htm?docId=53341&docType=2
tmallservice
天猫服务商品API model https://open.taobao.com/API.htm?docId=49044&docType=2
天猫服务商品API model https://open.taobao.com/API.htm?docId=49044&docType=2
tmalltrend
天猫新品平台API model https://open.taobao.com/API.htm?docId=54824&docType=2
天猫新品平台API model https://open.taobao.com/API.htm?docId=54824&docType=2
tmc
消息服务API model https://open.taobao.com/API.htm?docId=53697&docType=2
消息服务API model https://open.taobao.com/API.htm?docId=53697&docType=2
tmic
天猫新品创新中心API model https://open.taobao.com/API.htm?docId=43329&docType=2
天猫新品创新中心API model https://open.taobao.com/API.htm?docId=43329&docType=2
topoaid
隐私保护API model https://open.taobao.com/API.htm?docId=54714&docType=2
隐私保护API model https://open.taobao.com/API.htm?docId=54714&docType=2
trade
交易API model https://open.taobao.com/API.htm?docId=48314&docType=2
交易API model https://open.taobao.com/API.htm?docId=48314&docType=2
traderate
评价API model https://open.taobao.com/API.htm?docId=48881&docType=2
评价API model https://open.taobao.com/API.htm?docId=48881&docType=2
train
火车票API model https://open.taobao.com/API.htm?docId=24270&docType=2
火车票API model https://open.taobao.com/API.htm?docId=24270&docType=2
travel
度假-商品管理API model https://open.taobao.com/API.htm?docId=28132&docType=2
度假-商品管理API model https://open.taobao.com/API.htm?docId=28132&docType=2
traveltrade
度假&门票-交易管理API model https://open.taobao.com/API.htm?docId=52211&docType=2
度假&门票-交易管理API model https://open.taobao.com/API.htm?docId=52211&docType=2
tttm
天天特价 model https://open.taobao.com/API.htm?docId=48644&docType=2
天天特价 model https://open.taobao.com/API.htm?docId=48644&docType=2
tuanhotel
酒店团购套餐API model https://open.taobao.com/API.htm?docId=45432&docType=2
酒店团购套餐API model https://open.taobao.com/API.htm?docId=45432&docType=2
tuike
1688推客API model https://open.taobao.com/API.htm?docId=27457&docType=2
1688推客API model https://open.taobao.com/API.htm?docId=27457&docType=2
tvpay
tv支付 model https://open.taobao.com/API.htm?docId=26205&docType=2
tv支付 model https://open.taobao.com/API.htm?docId=26205&docType=2
tvupadmin
迎客松牌照审核接口 model https://open.taobao.com/API.htm?docId=30410&docType=2
迎客松牌照审核接口 model https://open.taobao.com/API.htm?docId=30410&docType=2
txcs
天猫超市前台API model https://open.taobao.com/API.htm?docId=45441&docType=2
天猫超市前台API model https://open.taobao.com/API.htm?docId=45441&docType=2
uscesl
业务平台新零售 model https://open.taobao.com/API.htm?docId=41646&docType=2
业务平台新零售 model https://open.taobao.com/API.htm?docId=41646&docType=2
user
用户API model https://open.taobao.com/API.htm?docId=24938&docType=2
用户API model https://open.taobao.com/API.htm?docId=24938&docType=2
usergrowth
手淘用户增 model https://open.taobao.com/API.htm?docId=43959&docType=2
手淘用户增 model https://open.taobao.com/API.htm?docId=43959&docType=2
usergrowth2
用户增长 model https://open.taobao.com/API.htm?docId=43098&docType=2
用户增长 model https://open.taobao.com/API.htm?docId=43098&docType=2
util
工具API model https://open.taobao.com/API.htm?docId=47640&docType=2
工具API model https://open.taobao.com/API.htm?docId=47640&docType=2
vaccin
阿里健康-疫苗API model https://open.taobao.com/API.htm?docId=37710&docType=2
阿里健康-疫苗API model https://open.taobao.com/API.htm?docId=37710&docType=2
viapi
视觉开放API(viapi) model https://open.taobao.com/API.htm?docId=50726&docType=2
视觉开放API(viapi) model https://open.taobao.com/API.htm?docId=50726&docType=2
vms
电动车API model https://open.taobao.com/API.htm?docId=30434&docType=2
电动车API model https://open.taobao.com/API.htm?docId=30434&docType=2
wangwang
旺旺API model https://open.taobao.com/API.htm?docId=27589&docType=2
旺旺API model https://open.taobao.com/API.htm?docId=27589&docType=2
waybill
电子面单API model https://open.taobao.com/API.htm?docId=27111&docType=2
电子面单API model https://open.taobao.com/API.htm?docId=27111&docType=2
wdk
五道口API model https://open.taobao.com/API.htm?docId=53548&docType=2
五道口API model https://open.taobao.com/API.htm?docId=53548&docType=2
wdkitem
五道口商品API model https://open.taobao.com/API.htm?docId=30648&docType=2
五道口商品API model https://open.taobao.com/API.htm?docId=30648&docType=2
wdklogistics
五道口-物流-自提API model https://open.taobao.com/API.htm?docId=47575&docType=2
五道口-物流-自提API model https://open.taobao.com/API.htm?docId=47575&docType=2
wenyuvideo
数娱媒资输出 model https://open.taobao.com/API.htm?docId=41681&docType=2
数娱媒资输出 model https://open.taobao.com/API.htm?docId=41681&docType=2
westcrm
亲橙里westcrmAPI model https://open.taobao.com/API.htm?docId=41384&docType=2
亲橙里westcrmAPI model https://open.taobao.com/API.htm?docId=41384&docType=2
wirelessshare
手淘分享 model https://open.taobao.com/API.htm?docId=32461&docType=2
手淘分享 model https://open.taobao.com/API.htm?docId=32461&docType=2
wlb
物流宝API model https://open.taobao.com/API.htm?docId=28394&docType=2
物流宝API model https://open.taobao.com/API.htm?docId=28394&docType=2
wlbimports
菜鸟集货API model https://open.taobao.com/API.htm?docId=45980&docType=2
菜鸟集货API model https://open.taobao.com/API.htm?docId=45980&docType=2
wms
菜鸟仓配API model https://open.taobao.com/API.htm?docId=26245&docType=2
菜鸟仓配API model https://open.taobao.com/API.htm?docId=26245&docType=2
xhotel
酒店API model https://open.taobao.com/API.htm?docId=49115&docType=2
酒店API model https://open.taobao.com/API.htm?docId=49115&docType=2
xhotelcrm
酒店会员API model https://open.taobao.com/API.htm?docId=34020&docType=2
酒店会员API model https://open.taobao.com/API.htm?docId=34020&docType=2
xhotelitem
酒店商品API model https://open.taobao.com/API.htm?docId=22665&docType=2
酒店商品API model https://open.taobao.com/API.htm?docId=22665&docType=2
xhotelofficial
酒店官网信用住API model https://open.taobao.com/API.htm?docId=26073&docType=2
酒店官网信用住API model https://open.taobao.com/API.htm?docId=26073&docType=2
xhoteloffline
酒店线下信用住API model https://open.taobao.com/API.htm?docId=26074&docType=2
酒店线下信用住API model https://open.taobao.com/API.htm?docId=26074&docType=2
xhotelonlineorder
酒店在线预订API model https://open.taobao.com/API.htm?docId=48716&docType=2
酒店在线预订API model https://open.taobao.com/API.htm?docId=48716&docType=2
xiami
虾米API model https://open.taobao.com/API.htm?docId=23279&docType=2
虾米API model https://open.taobao.com/API.htm?docId=23279&docType=2
xiamiatrist
曲库开放平台艺人API model https://open.taobao.com/API.htm?docId=55125&docType=2
曲库开放平台艺人API model https://open.taobao.com/API.htm?docId=55125&docType=2
xiamicontent
曲库开放平台歌曲API model https://open.taobao.com/API.htm?docId=54991&docType=2
曲库开放平台歌曲API model https://open.taobao.com/API.htm?docId=54991&docType=2
xiamiopen
虾米开放平台 model https://open.taobao.com/API.htm?docId=36051&docType=2
虾米开放平台 model https://open.taobao.com/API.htm?docId=36051&docType=2
xiamitrace
曲库开放平台TraceAPI model https://open.taobao.com/API.htm?docId=51350&docType=2
曲库开放平台TraceAPI model https://open.taobao.com/API.htm?docId=51350&docType=2
youkudsp
优酷网盟 model https://open.taobao.com/API.htm?docId=39065&docType=2
优酷网盟 model https://open.taobao.com/API.htm?docId=39065&docType=2
youkuott
优酷-媒资 model https://open.taobao.com/API.htm?docId=42057&docType=2
优酷-媒资 model https://open.taobao.com/API.htm?docId=42057&docType=2
yunos
YunOS model https://open.taobao.com/API.htm?docId=33101&docType=2
YunOS model https://open.taobao.com/API.htm?docId=33101&docType=2
yunosaccount
Yunos Account API model https://open.taobao.com/API.htm?docId=27319&docType=2
Yunos Account API model https://open.taobao.com/API.htm?docId=27319&docType=2
yunosad
YunOS-广告 model https://open.taobao.com/API.htm?docId=29086&docType=2
YunOS-广告 model https://open.taobao.com/API.htm?docId=29086&docType=2
yunosappstore
ALiOS应用中心 model https://open.taobao.com/API.htm?docId=35428&docType=2
ALiOS应用中心 model https://open.taobao.com/API.htm?docId=35428&docType=2
yunosdm
教育账号 API model https://open.taobao.com/API.htm?docId=35502&docType=2
教育账号 API model https://open.taobao.com/API.htm?docId=35502&docType=2
yunosminiapp
小程序API model https://open.taobao.com/API.htm?docId=54992&docType=2
小程序API model https://open.taobao.com/API.htm?docId=54992&docType=2
zqs
周期购API model https://open.taobao.com/API.htm?docId=55500&docType=2
周期购API model https://open.taobao.com/API.htm?docId=55500&docType=2

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL