API Docs/Competitor Analysis
Competitor Analysis
View detailed data such as sales and revenue for a target ASIN
POSThttps://open-api.sentirix.ai/v1/selection/listing/competitor-list
Request Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| marketplace | string | Yes | Marketplace code (e.g., us) |
| month | string | No | Query month, format yyyyMM |
| brand | string | No | Brand |
| sellerName | string | No | Seller name |
| asins | array | No | ASIN list (up to 40) |
| nodeIdPath | string | No | Category path |
| nodeIdPathEqual | boolean | No | Whether the category is an exact match |
| keyword | string | No | Keyword |
| matchType | integer | No | Keyword match type: 1 Phrase, 2 Fuzzy, 3 Exact |
| variation | string | No | Variation filter: N=include variations, Y=only single variation products |
| page | integer | No | Page number |
| size | integer | No | Items per page |
| order | object | No | Order object |
Request Example (JSON)
{
"marketplace": "us",
"month": "202501",
"brand": "Anker",
"sellerName": "Amazon",
"asins": [
"B0C1234567"
]
}Response Structure
{
"code": 200,
"message": "success",
"data": {
"total": 100,
"list": [
{
"asin": "B0C1234567",
"title": "Wireless Earbuds",
"brand": "Anker",
"price": 29.99,
"units": 5200,
"revenue": 155948,
"rating": 4.5,
"ratings": 3200,
"bsr": 12,
"marketplace": "us",
"month": "202501"
}
]
}
}