Skip to main content
GET
Sales and commission for your brand's products

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Query Parameters

start
string
required

First day of the report (inclusive). Use YYYY-MM-DD or YYYYMMDD.

Example:
end
string
required

Last day of the report (inclusive). Use YYYY-MM-DD or YYYYMMDD.

Example:
marketplace
string | null

Limit results to one Amazon marketplace — e.g. amazon.com, amazon.co.uk, amazon.de. Use all or leave blank to include every marketplace.

asins
string | null

Limit results to one or more products by ASIN. Separate multiple ASINs with commas.

brand_ids
string | null

Limit results to specific brands you own. Separate multiple ids with commas.

limit
integer
default:100

How many rows to return per page (1–500). Defaults to 100.

Required range: 1 <= x <= 500
cursor
string | null

Use next_cursor from the previous response. Leave blank for the first page.

Response

Successful Response

The response from GET /sellers/reports.

total_count
integer
required

Total rows matching your filters across every page.

fetched_count
integer
required

Rows in this page.

rows
SellerReportRow · object[]
required

The performance rows for this page.

total_count_exact
boolean
default:true

True when total_count is exact. False means MongoDB hit the bounded count time limit; use next_cursor to continue paging.

next_cursor
string | null

Pass this back as cursor to fetch the next page. Null when you're on the last page.