axesso-amazon-data-service1

axesso-amazon-data-service1

4.0

The Axesso - Amazon Data Service is a comprehensive API solution designed to deliver real-time data from all Amazon marketplaces.

The Axesso - Amazon Data Service provides a wide range of information including product details, pricing, reviews, seller information, and more. With over 10 years of experience in web scraping and API implementation, Axesso offers reliable and production-grade solutions with zero downtime and quick adaptation to site changes. This service is ideal for businesses looking to gather real-time data from Amazon for market research, price monitoring, inventory management, and more. Axesso's API is comparable to the Amazon Product Advertising API but offers a more streamlined data retrieval experience. Custom solutions and private plans are available to meet specific business needs.

Features

  • Real-Time Data: Retrieve the most recent data directly from Amazon without any intermediary databases.
  • Comprehensive Information: Access detailed information about products, including titles, manufacturers, reviews, sizes, prices, seller details, deals, and more.
  • Comparable to Amazon Product Advertising API: Provides similar data in a more condensed format, offering a streamlined data retrieval experience.
  • Custom Solutions: Offers private plans and customization options tailored to specific business needs.

MCP Tools

  • Product Details: Request detailed product information.
  • Search Products: Search products by keyword and retrieve all ASINs for a specified page.
  • Reviews: Lookup reviews from a product.
  • Deals: Access deals for different marketplaces with various filter options.
  • Offers: Retrieve offers from different sellers for a specified product.
  • Best Seller: Access best seller lists.
  • Seller Details: Retrieve seller details based on seller ID and domain.
  • Seller Products: Retrieve all products for a given seller, page by page.
  • Profile: Retrieve detailed profile information, including user reviews.
  • Healthcheck: Test the service.
  • Review Details: Retrieve in-depth review details including ratings and author information.

Usage with Different Platforms

python

python
import requests

url = 'https://api.axesso.de/api/v1/product'
params = {
    'asin': 'B08N5WRWNW',
    'domain': 'com'
}
headers = {
    'x-api-key': 'YOUR_API_KEY'
}

response = requests.get(url, headers=headers, params=params)
print(response.json())

nodejs

javascript
const axios = require('axios');

const options = {
  method: 'GET',
  url: 'https://api.axesso.de/api/v1/product',
  params: { asin: 'B08N5WRWNW', domain: 'com' },
  headers: { 'x-api-key': 'YOUR_API_KEY' }
};

axios.request(options).then(function (response) {
  console.log(response.data);
}).catch(function (error) {
  console.error(error);
});