SkillAgentSearch skills...

Python Aliexpress Api Client

Python client library for AliExpress API

Install / Use

npx skills add dhanzhelo/python-aliexpress-api-client

Installs into whichever agent you are using.

About this skill

Quality Score

0/100

Supported Platforms

Universal

README

AliExpress API Client

Python client library for AliExpress API

Usage example

Configuration:

from aliexpress_api_client import AliExpress

aliexpress = AliExpress('api_key', 'affiliate_id')

Get product list:

products = aliexpress.get_product_list(['productId', 'productTitle', 'salePrice'])

for product in products:
    print '#%s %s: %s' % (product['productId'], product['productTitle'], product['salePrice'])

Get product details:

product = aliexpress.get_product_details(['productId', 'productTitle', 'salePrice'], product_id)

print '#%s %s: %s' % (product['productId'], product['productTitle'], product['salePrice'])

Get promotion links (require affiliate_id):

links = api.get_promotion_links(['url', 'promotionUrl'], urls)

for link in links['promotionUrls']:
    print '%s: %s' % (link['url'], link['promotionUrl'])

Related Skills

View on GitHub
GitHub Stars76
CategoryDevelopment
Updated15d ago
Forks25

Languages

Python

Security Score

95/100

Audited on Jul 23, 2026

No findings