otapi-taobao-tmall-simple
The Otapi Taobao Tmall Simple MCP Server provides a streamlined interface for retrieving essential information about products from Taobao and Tmall.
The Otapi Taobao Tmall Simple MCP Server is designed to offer users a simplified and efficient way to access product information from Taobao and Tmall. It focuses on delivering key product details such as titles, prices, discounts, features, images, brand information, categories, vendor details, and physical parameters. This service is particularly beneficial for users who need quick and straightforward access to product data without dealing with the complexities of SKU configurations or additional properties. The server supports various subscription plans, ranging from free basic access to comprehensive options for power users, ensuring that it can cater to different user needs and usage levels.
Features
- Fetches the title of the product.
- Retrieves the current price and any applicable discounts.
- Lists the main features of the product.
- Provides access to product images.
- Identifies the brand associated with the product.
Usage with Different Platforms
python
python
import requests
url = 'https://api.otapi.com/get_item_brief'
params = {
'language': 'en',
'itemId': '1234567890'
}
response = requests.get(url, params=params)
print(response.json())
nodejs
javascript
const axios = require('axios');
axios.get('https://api.otapi.com/get_item_brief', {
params: {
language: 'en',
itemId: '1234567890'
}
})
.then(response => {
console.log(response.data);
})
.catch(error => {
console.error(error);
});