Aliexpress True API

FREEMIUM
By georgekhananaev | Updated 12일 전 | Commerce
Popularity

9.3 / 10

Latency

4,581ms

Service Level

100%

Health Check

100%

README

Overview

Aliexpress True API, developed by George Khananaev, provides robust access to a vast range of product data directly from AliExpress. This API enables developers to retrieve detailed information on specific products, discover trending items, and explore product categories effortlessly. Designed for high reliability, the API maintains a 99.99% uptime guarantee, ensuring seamless functionality barring issues on AliExpress’s side.

Subscription Plans

FREEMIUM: This plan is ideal for developers starting out or experimenting with the Aliexpress True API functionalities without any initial financial commitment.

Base URL

The base endpoint for all API requests is: https://aliexpress-true-api.p.rapidapi.com/api/

Authentication

{
  "X-RapidAPI-Key": "YOUR_RAPIDAPI_KEY",
  "X-RapidAPI-Host": "aliexpress-true-api.p.rapidapi.com"
}

Ensure you replace YOUR_RAPIDAPI_KEY with the key obtained from your RapidAPI dashboard.

Endpoints

  1. Get Single Product
    Fetch detailed information about a single product using its unique ID.

HTTP Method: GET
Endpoint: /v2_get_single_product
Parameters:

  • product_id (string, required): The unique identifier of the product.
  • currency (string, optional, default “USD”): Currency in which the price should be displayed.
  • language (string, optional, default “EN”): The preferred language for the product details.

Example Request:

const axios = require('axios');

const options = {
  method: 'GET',
  url: 'https://aliexpress-true-api.p.rapidapi.com/api/v2/product/1005006094869269',
  params: {
    currency: 'USD',
    language: 'EN'
  },
  headers: {
    'X-RapidAPI-Key': 'YOUR_RAPIDAPI_KEY',
    'X-RapidAPI-Host': 'aliexpress-true-api.p.rapidapi.com'
  }
};

try {
  const response = await axios.request(options);
  console.log(response.data);
} catch (error) {
  console.error(error);
}

  1. Get Hot Products

HTTP Method: GET
Endpoint: /v2_get_hot_products
Parameters:

  • keywords (string, required): Search term used to find products.
  • min_sale_price (string, optional): Minimum sale price of the products.
  • max_sale_price (string, optional): Maximum sale price of the products.
  • language (string, optional, default “EN”): Language for the product details.
  • page_no (integer, optional, default 0): Page number for pagination.
  • page_size (integer, optional, default 50): Number of products per page.
  • currency (string, optional, default “USD”): Currency in which prices are displayed.
  • ship_to_country (string, optional): Shipping destination country to filter products.
  • sort (string, optional): Sorting parameter (e.g., ‘SALE_PRICE_ASC’).

Example Request:

const axios = require('axios');

const options = {
  method: 'GET',
  url: 'https://aliexpress-true-api.p.rapidapi.com/api/v2/hot-products',
  params: {
    keywords: 'xiaomi',
    min_sale_price: '1',
    max_sale_price: '1000',
    language: 'EN',
    page_no: '0',
    page_size: '50',
    currency: 'USD',
    ship_to_country: 'US',
    sort: 'SALE_PRICE_ASC'
  },
  headers: {
    'X-RapidAPI-Key': 'YOUR_RAPIDAPI_KEY',
    'X-RapidAPI-Host': 'aliexpress-true-api.p.rapidapi.com'
  }
};

try {
  const response = await axios.request(options);
  console.log(response.data);
} catch (error) {
  console.error(error);
}

  1. Get Categories
    List all categories available on AliExpress.

HTTP Method: GET
Endpoint: /v2_get_categories
Parameters:

  • None

Example Request:

const axios = require('axios');

const options = {
  method: 'GET',
  url: 'https://aliexpress-true-api.p.rapidapi.com/api/v2/categories',
  headers: {
    'X-RapidAPI-Key': 'YOUR_RAPIDAPI_KEY',
    'X-RapidAPI-Host

Privacy and Policy of Usage

Commitment to Privacy

At Aliexpress True API, we are committed to maintaining the privacy and security of our users. As part of this commitment, we would like to transparently share our practices regarding the handling of information.

Information Collection and Use

No Personal Data Collection: Aliexpress True API does not collect, store, or process any personal data from the users of the API. Users interact with our API using their RapidAPI credentials, and we do not have access to this information.

Direct Interaction with AliExpress API: All product data and information available through our API are fetched directly from AliExpress’s API. We do not store any data from AliExpress nor do we use any form of caching mechanisms. As a result, every piece of data you receive via our API is up-to-date and directly retrieved in real time from AliExpress at the moment of your request.

Data Security

We take appropriate measures to ensure that the data fetched through AliExpress is securely handled during transmission. However, since we do not store any data, there are no risks of data breaches concerning user data on our end.

Usage Policy

By using the Aliexpress True API, users agree to adhere to the terms of service as outlined by RapidAPI and AliExpress. Users are responsible for any data fetched from AliExpress through our API and should ensure that their use complies with AliExpress’s own policies and any applicable laws and regulations.

Updates to Our Privacy Policy

We reserve the right to update our privacy and policy of usage from time to time. Any changes will be made available on this document, and we encourage users to review our policy periodically to stay informed.

Contact Information

For any questions or concerns regarding our privacy policy or data practices, please contact us through your preferred communication channel provided in the API’s documentation on RapidAPI.

By utilizing Aliexpress True API, you acknowledge and accept our policy and confirm that you understand the direct and transparent handling of data as described above.

Followers: 2
Resources:
Product Website Terms of use
API Creator:
Rapid account: Georgekhananaev
georgekhananaev
georgekhananaev
Log In to Rate API
Rating: 5 - Votes: 1