gocreative-amazon-scraper
v0.1.0
Published
Tiny single-purpose Node helper that fetches Amazon product data (title, price, rating, reviews, images) by ASIN through the GoCreative AI pay-per-call API. Bring your own gck_ API key or use the free demo tier (5/day per IP). For full multi-endpoint cove
Downloads
195
Maintainers
Readme
gocreative-amazon-scraper
Tiny single-purpose Node helper that fetches Amazon product data (title, price, rating, reviews, images) by ASIN through the GoCreative AI pay-per-call API. Bring your own gck_ API key or use the free demo tier (5/day per IP). For full multi-endpoint coverage install the unified gocreative package.
Install
npm install gocreative-amazon-scraper30-second quickstart
const { scrapeAmazon } = require("gocreative-amazon-scraper");
(async () => {
// Free demo tier (no key needed, 5 calls/day per IP):
console.log(await scrapeAmazon("B08N5WRWNW"));
// Or with a paid API key:
console.log(await scrapeAmazon("B08N5WRWNW", { apiKey: "gck_your_key_here" }));
})();You can also set GOCREATIVE_API_KEY=gck_... in your environment.
Need more endpoints?
This package wraps just one GoCreative endpoint. For the full SDK with enrich / lookup / scrape / search across 145+ endpoints, install:
npm install gocreativePowered by GoCreative AI — free tier 5 calls/day, paid plans at https://api.gocreativeai.com/pricing.
License
MIT
