Skip to main content
GET
/
products
List ASINs across the brands you own
curl --request GET \
  --url https://api.example.com/products \
  --header 'Authorization: Bearer <token>'
{
  "total_count": 123,
  "fetched_count": 123,
  "skip": 123,
  "limit": 123,
  "products": [
    {
      "asin": "<string>",
      "product_name": "<string>",
      "marketplace": "<string>",
      "brand_id": "<string>",
      "brand_name": "<string>",
      "active": false
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.archeraffiliates.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Query Parameters

skip
integer
default:0

How many products to skip — used for paging.

Required range: x >= 0
limit
integer
default:100

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

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

Find products whose title or ASIN matches the given text.

brand_id
string | null

Restrict to a single brand you own. Ids come from /sellers/brands.

asins
string | null

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

marketplace
string | null

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

Response

Successful Response

The response from GET /sellers/products.

total_count
integer
required

Total products matching your filters across every page.

fetched_count
integer
required

Products in this page.

skip
integer
required

The skip value that produced this page.

limit
integer
required

The limit value that produced this page.

products
SellerProductRow · object[]
required

The products on this page.