Authentication
Examples use the query parameter token=YOUR_TOKEN to match the current public request builder. Keep credentials on your server and follow project delivery instructions.
Search 216 endpoints by platform, capability, or route, with authentication, parameters, error handling, billing guidance, and server-side examples.
Choose an endpoint, add your project credential, and validate the response in a server-side environment.
Store the credential in a server-side secret manager and load it at request time.
Open the matching product detail to review required parameters, fields, and examples.
Check HTTP status, response fields, empty results, timeouts, and billing scope with a test sample.
Examples use the query parameter token=YOUR_TOKEN to match the current public request builder. Keep credentials on your server and follow project delivery instructions.
Handle HTTP 4xx as request or credential issues and 5xx as a service-side result. Record the request time and route; use bounded backoff rather than unlimited retries.
Endpoints may use page, cursor, offset, or no pagination. Follow the endpoint fields and return the supplied cursor unchanged when present.
Use the language tabs to copy a complete request template. Keep project credentials in a server-side secret store.
curl --get 'https://jhzyapi.com/api/amazon/v1/product/detail' \
--data-urlencode 'token=YOUR_TOKEN' \
--data-urlencode 'site=US' \
--data-urlencode 'asin=ASIN'import requests
response = requests.get(
"https://jhzyapi.com/api/amazon/v1/product/detail",
params={"token": "YOUR_TOKEN", "site": "US", "asin": "ASIN"},
timeout=30,
)
response.raise_for_status()
data = response.json()const url = new URL("https://jhzyapi.com/api/amazon/v1/product/detail");
url.search = new URLSearchParams({ token: "YOUR_TOKEN", site: "US", asin: "ASIN" });
const response = await fetch(url);
if (!response.ok) throw new Error(`HTTP ${response.status}`);
const data = await response.json();Each tab uses the same endpoint and request parameters for direct comparison.
Choose a platform or search by name, capability, or route. Select any endpoint to open its product detail.