Aliexpress Product Scraper API

API Endpoint Specifications

  • Endpoint Path: /api/1/aliexpress-scraper
  • Type of Data: JSON & 5/minute
  • Data Source: Aliexpress.com
  • Request Limit: 500 request/month
  • Script & Integration: Code to integrate with cURL, JS, Python, Ruby, Php, Node.js, Java, .NET, Rust, Go, Typescript
Aliexpress Product Scraper API Endpoint Basic Info

API Endpoint Path

required

Aliexpress Product Scraper API

/api/1/aliexpress-scraper


Call Method

Required

POST

Type of Data Return

JSON

Output structured JSON data on AI blog content


Available API Arguments & Parameters

token

required

BUYFROMLO API token. Free and paid subscription API are available: /api/1/aliexpress-scraper, and accessible to on-site APP on /app/1/aliexpress-scraper as well

productkw

required

Input a product keyword in English



Aliexpress Product Scraper API

/api/1/aliexpress-scraper


Code Integration and Response

Python Code Sample


import requests

apiendpoint = "https://api.buyfromlo.com/api/1/aliexpress-scraper"

## Required Arguments & Parameters ##
product_kw = "input a product keyword"

headers={"Authorization": "Bearer " + token}

## Call the api ##
response = requests.post(apiendpoint + "?productkw=" + product_kw, headers= headers)
print(response.status_code)
print(response.json())
                        

JSON Response Sample


element_info = {
                        'Advertiser ID': '',
                        'Product ID': '',
                        'Product Description': '',
                        'Product SEO': '',
                        'Product FAQ': '',
                        'Product Review': '',
                        'Live Status': '',
                        'Catalog ID': '',
                        'Product Title Origin': '',
                        'Product Description Origin':'',
                        'DiscountPrice':'',
                        'Platform': 'Aliexpress',
                        'Promotions':'',
                        'Subcategory Name': '',
                        'Campaign Name':'',
                        'Labels':'',
                        'Product Image': '',
                        'Product Price': '',
                        'Price Currency': 'USD',
                        'Product Link': '',
                        'avgReview': '',
                        'handleURL':'',
                        'productEmbeddings':'',
                        '0':'Dummy',
                        '1':'Dummy2'
                    }