intelligentsia.com APIintelligentsia.com ↗
Access Intelligentsia Coffee's full product catalog, collections, variants, and pricing via 8 endpoints. Search coffees, filter by collection, and retrieve SKU-level data.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/9b8b56dc-10c2-46ce-931e-ab62d4512192/list_all_coffee_products' \ -H 'X-API-Key: $PARSE_API_KEY'
Returns all coffee and espresso products from the main coffee collection. Fetches all pages automatically.
No input parameters required.
{
"type": "object",
"fields": {
"total": "integer total number of products returned",
"products": "array of product objects with id, title, handle, body_html, variants, images, tags, and pricing"
},
"sample": {
"data": {
"total": 35,
"products": [
{
"id": 4528557097020,
"tags": [
"Badge: Best Seller"
],
"title": "Black Cat Classic Espresso",
"handle": "black-cat-classic-espresso",
"images": [
{
"src": "https://cdn.shopify.com/s/files/1/0084/8802/6172/files/12oz_BC_Classic.png?v=1762379623"
}
],
"vendor": "Intelligentsia Coffee",
"variants": [
{
"id": 32092748382268,
"sku": "5913",
"price": "17.50",
"title": "12 oz"
}
],
"body_html": "<p>Black Cat Classic is our hallmark espresso blend...</p>",
"product_type": "Coffee"
}
]
},
"status": "success"
}
}About the intelligentsia.com API
This API exposes 8 endpoints against intelligentsia.com, covering coffee products, merchandise, subscriptions, and curated collections. Use list_all_coffee_products to pull every coffee and espresso listing in one call, or get_product_variants_and_pricing to retrieve SKU-level fields like price, barcode, weight, and compare_at_price for a specific product handle. All paginated collection endpoints fetch every page automatically.
Product and Collection Data
list_all_coffee_products returns the full coffee catalog as an array of product objects, each containing id, title, handle, body_html, tags, images, variants, and pricing. list_products_by_collection narrows results to a specific collection by passing a collection_handle string such as blends, all-espresso, or single-origin. To discover valid handles, call list_all_collections first — it returns every collection's id, title, handle, description, published_at, and products_count.
Variant and Pricing Detail
get_product_variants_and_pricing takes a product handle and returns an array of variant objects. Each variant includes id, title, price, sku, weight, barcode, compare_at_price, and availability status. This is the right endpoint when you need to compare grind options or bag sizes on a single product rather than pulling the full catalog. get_product_details returns the same handle-scoped data but adds vendor, product_type, full options arrays, and all image records.
Search and Specialty Collections
search_products accepts a free-text query (e.g. ethiopia, blend) and returns a resources object with a products array containing id, title, handle, price, image, and url. It searches across all product types on the site, not just coffee. list_goods_products isolates non-coffee merchandise like brewing equipment and accessories, while list_subscription_products returns only products in the coffee filter subscriptions collection — useful if you need to distinguish subscription-eligible SKUs from one-time purchases.
- Build a price-tracking tool that monitors
compare_at_pricevs.priceacross all coffee variants to detect discounts. - Populate a coffee discovery app with origin and blend details from
body_htmlandtagsreturned bylist_all_coffee_products. - Sync a product catalog to an internal database using
list_products_by_collectionwith handles likesingle-originorblends. - Extract barcode and SKU data from
get_product_variants_and_pricingfor inventory or retail integration. - Power a faceted search UI by combining
list_all_collectionsfor filter options withlist_products_by_collectionfor results. - Identify subscription-eligible SKUs separately from retail products using
list_subscription_products. - Compare grind size and bag weight options by parsing variant
titleandweightfields fromget_product_details.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Intelligentsia Coffee have an official developer API?+
/products.json), but Intelligentsia does not publish an official developer API or documentation for third-party use.What does `get_product_variants_and_pricing` return that `list_all_coffee_products` does not?+
get_product_variants_and_pricing focuses exclusively on variant-level fields for a single product: sku, barcode, weight, compare_at_price, and per-variant availability. The list endpoints include variants too, but are optimized for catalog-wide retrieval rather than per-SKU detail.How do I find valid collection handles to use with `list_products_by_collection`?+
list_all_collections first. It returns every collection object with a handle field (e.g. blends, all-espresso, single-origin) that you pass directly as the collection_handle parameter.Does `search_products` search only coffee, or all product types?+
search_products queries across the full site, so a term like espresso may return both coffee products and brewing equipment. The response groups results inside a resources object with a products array; there is no built-in type filter on the search endpoint itself.