Request

To retrieve a product's sales rank and categorical performance metrics, send a GET request to the Real-Time API with the BEST_SELLERS_RANK operation. This request captures the live ranking snapshot of a specific ASIN across the specified Amazon marketplace.

Endpoint

//GET https://realtime.easyparser.com/v1/request

Required Parameters

The following parameters must be included in your request to ensure successful processing and authentication. For a broader understanding of global fields, please refer to the Common Required Request Fieldsarrow-up-right section.

Parameter
Type
Required
Description
Example

api_key

String

Yes

Your unique Easyparser API key used for identity verification.

YOUR_API_KEY

platform

String

Yes

The target e-commerce platform (Always AMZ for Amazon).

AMZ

operation

String

Yes

The specific operation to execute.

BEST_SELLERS_RANK

domain

String

Yes

The Amazon marketplace domain extension.

.com

asin

String

Yes

The unique 10-character Amazon Standard Identification Number.

B01DZQT0FG

Optional Parameters

There are no operation-specific optional parameters available for the BEST_SELLERS_RANK operation.

Example Request

curl --location 'https://realtime.easyparser.com/v1/request?
  api_key=YOUR_API_KEY&
  platform=AMZ&
  operation=BEST_SELLERS_RANK&
  domain=.com&
  asin=B01DZQT0FG'

Last updated