Quickstart
Sign-up to first API call in under 90 seconds.
1. Create an account
Sign up with email magic-link or Google OAuth. Free tier includes 1,000 tokens with no expiration.
2. Mint an API key
From the dashboard, go to API Keys and click Create new key. Keys are prefixed with rk_live_ and shown once at creation. Copy and store securely.
You can rotate keys at any time. Revoking a key takes effect within 60 seconds.
3. Call the API
curl -H "Authorization: Bearer rk_live_YOUR_KEY" \
"https://api.retailerapi.com/v1/products/19667262713"Expected response shape:
{
"item_id": "19667262713",
"title": "12-in-1 Electric Pressure Cooker 6 QT...",
"brand": "Cooks Essentials",
"image_url": "https://i5.walmartimages.com/...",
"current_price": 100.56,
"buybox_price": 100.56,
"offers_count": 4,
"walmart_url": "https://www.walmart.com/ip/...",
"tokens_consumed": 1,
"tokens_remaining": 999
}4. Add cross-retailer enrichment
curl -H "Authorization: Bearer rk_live_YOUR_KEY" \
"https://api.retailerapi.com/v1/products/19667262713?include_cross_retailer=true"Response now includes a cross_retailer array with current price + URL for Amazon, eBay, Target, Best Buy, Lowe's, and Home Depot. Cells with status indexing are populated by a background job; call again in 30 seconds.
5. Add live sellers + reviews
curl -H "Authorization: Bearer rk_live_YOUR_KEY" \
"https://api.retailerapi.com/v1/products/19667262713?include_offers_reviews=true"Adds an offers array (current marketplace sellers + their prices, in-stock, buy-box flag) and a review_summary block (average rating, total reviews, rating distribution + top 5 reviews). +5 tokens.
Price history is already included in the base call — no extra flag needed.
What costs how many tokens
| Call | Tokens |
|---|---|
| Base lookup (includes 90d price history + sales rank + velocity stats) | 1 |
| + include_offers_reviews (live sellers + review summary + top 5 reviews) | +5 |
| + include_cross_retailer (Amazon, eBay, Lowe's, Target, Best Buy, Home Depot) | +2 |
| + force_refresh (bypass cache, fresh upstream pull) | +3 |