Bowmark AIdocs

Keepa

Keepa's documented Amazon product API — reads a product's native price history and metadata by ASIN.

Keepa's documented Amazon product API — reads a product's native price history and metadata by ASIN. Requires a caller-provided Keepa API key.

Domain: keepa.com

Also known as: Keepa, keepa, keepa.com, Keepa API

Call it directly

bowmark.providers.keepa.getProduct(args: { asin: string; domain?: number; stats?: number }): Promise<KeepaProductResult>

Functions

FunctionWhat it does
getProductReads Keepa's native Amazon product record and compact price-history series for one ASIN.

Types

interface KeepaProductResult { product: KeepaProduct; tokensLeft: number | null; tokensConsumed: number | null; refillRate: number | null; }
interface KeepaProduct { asin: string; domainId: number; title: string; csv?: unknown[]; stats?: Record<string, unknown>; }

Examples

const result = await bowmark.providers.keepa.getProduct({ asin: "B0F3GWXLTS" });
return { title: result.product.title, asin: result.product.asin, history: result.product.csv };