AWS Marketplace Commerce Analytics
amazonaws · Cloud
Provides AWS Marketplace business intelligence data on-demand.
Authentication
Sample Requests
Given a data set type and data set publication date, asynchronously publishes the requested data set to the specified S3 bucket and notifies the specified SNS topic once the data is available. Returns a unique request identifier that can be used to correlate requests with notifications from the SNS
Hover any highlighted part to learn what it does
| X-Amz-Target | MarketplaceCommerceAnalytics20150701.GenerateDataSet |
curl -X POST "https://api.apis.guru/v2/specs/amazonaws.com/marketplacecommerceanalytics/2015-07-01/#X-Amz-Target=MarketplaceCommerceAnalytics20150701.GenerateDataSet" \ -H "X-Amz-Target: MarketplaceCommerceAnalytics20150701.GenerateDataSet"
import requests
headers = {
"X-Amz-Target": "MarketplaceCommerceAnalytics20150701.GenerateDataSet"
}
response = requests.post(
"https://api.apis.guru/v2/specs/amazonaws.com/marketplacecommerceanalytics/2015-07-01/#X-Amz-Target=MarketplaceCommerceAnalytics20150701.GenerateDataSet",
headers=headers,
)
print(response.json())const url = 'https://api.apis.guru/v2/specs/amazonaws.com/marketplacecommerceanalytics/2015-07-01/#X-Amz-Target=MarketplaceCommerceAnalytics20150701.GenerateDataSet';
const response = await fetch(url, {
method: 'POST',
headers: {
'X-Amz-Target': 'MarketplaceCommerceAnalytics20150701.GenerateDataSet'
},
});
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
)
func main() {
targetURL := "https://api.apis.guru/v2/specs/amazonaws.com/marketplacecommerceanalytics/2015-07-01/#X-Amz-Target=MarketplaceCommerceAnalytics20150701.GenerateDataSet"
req, _ := http.NewRequest("POST", targetURL, nil)
req.Header.Set("X-Amz-Target", "MarketplaceCommerceAnalytics20150701.GenerateDataSet")
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/amazonaws.com/marketplacecommerceanalytics/2015-07-01/#X-Amz-Target=MarketplaceCommerceAnalytics20150701.GenerateDataSet")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Post.new(uri)
req["X-Amz-Target"] = "MarketplaceCommerceAnalytics20150701.GenerateDataSet"
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/amazonaws.com/marketplacecommerceanalytics/2015-07-01/#X-Amz-Target=MarketplaceCommerceAnalytics20150701.GenerateDataSet";
$opts = ["http" => [
"method" => "POST",
"header" => implode("\r\n", [
"X-Amz-Target: MarketplaceCommerceAnalytics20150701.GenerateDataSet"
]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Given a data set type and a from date, asynchronously publishes the requested customer support data to the specified S3 bucket and notifies the specified SNS topic once the data is available. Returns a unique request identifier that can be used to correlate requests with notifications from the SNS t
Hover any highlighted part to learn what it does
| X-Amz-Target | MarketplaceCommerceAnalytics20150701.StartSupportDataExport |
curl -X POST "https://api.apis.guru/v2/specs/amazonaws.com/marketplacecommerceanalytics/2015-07-01/#X-Amz-Target=MarketplaceCommerceAnalytics20150701.StartSupportDataExport" \ -H "X-Amz-Target: MarketplaceCommerceAnalytics20150701.StartSupportDataExport"
import requests
headers = {
"X-Amz-Target": "MarketplaceCommerceAnalytics20150701.StartSupportDataExport"
}
response = requests.post(
"https://api.apis.guru/v2/specs/amazonaws.com/marketplacecommerceanalytics/2015-07-01/#X-Amz-Target=MarketplaceCommerceAnalytics20150701.StartSupportDataExport",
headers=headers,
)
print(response.json())const url = 'https://api.apis.guru/v2/specs/amazonaws.com/marketplacecommerceanalytics/2015-07-01/#X-Amz-Target=MarketplaceCommerceAnalytics20150701.StartSupportDataExport';
const response = await fetch(url, {
method: 'POST',
headers: {
'X-Amz-Target': 'MarketplaceCommerceAnalytics20150701.StartSupportDataExport'
},
});
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
)
func main() {
targetURL := "https://api.apis.guru/v2/specs/amazonaws.com/marketplacecommerceanalytics/2015-07-01/#X-Amz-Target=MarketplaceCommerceAnalytics20150701.StartSupportDataExport"
req, _ := http.NewRequest("POST", targetURL, nil)
req.Header.Set("X-Amz-Target", "MarketplaceCommerceAnalytics20150701.StartSupportDataExport")
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/amazonaws.com/marketplacecommerceanalytics/2015-07-01/#X-Amz-Target=MarketplaceCommerceAnalytics20150701.StartSupportDataExport")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Post.new(uri)
req["X-Amz-Target"] = "MarketplaceCommerceAnalytics20150701.StartSupportDataExport"
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/amazonaws.com/marketplacecommerceanalytics/2015-07-01/#X-Amz-Target=MarketplaceCommerceAnalytics20150701.StartSupportDataExport";
$opts = ["http" => [
"method" => "POST",
"header" => implode("\r\n", [
"X-Amz-Target: MarketplaceCommerceAnalytics20150701.StartSupportDataExport"
]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Postman Setup Guide
- See official documentation for authentication and setup.
What can you build with AWS Marketplace Commerce Analytics?
AWS Marketplace Commerce Analytics is a Cloud API. Developers commonly use cloud APIs for:
- provisioning and managing cloud infrastructure
- automating deployments and container orchestration
- monitoring uptime and performance metrics
- managing storage buckets and databases
- setting up auto-scaling and load balancing
No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. AWS Marketplace Commerce Analytics is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide