© 2025 ItemGraph. All Rights Reserved.


The universal product graph API
Get real-time access to every product on the internet - prices, stock, sellers, reviews and more.
✅ Real-time data: prices, stock, merchants
✅ Search across 1M+ products
✅ Structured JSON for LLMs, agents, dashboards
✅ Structured JSON for LLMs
✅ Traverse product relationships: variants, sellers, reviews, and more
✅ Traverse product relationships
from item_graph import ProductGraphClient # Initialize the API client with your API key client = ProductGraphClient(api_key="your_api_key_here") # 1. Fetch products for a specific store with optional filters products = client.get_products_for_store( store_name="Zara", gender="women", # Optional categories=["dresses", "tops"] # Optional ) # 2. Select a single product (e.g. the first one) product = products[0] # 3. Get live stock availability stock = client.get_stock_availability(product_id=product.seller_product_id) # 4. Get latest reviews reviews = client.get_reviews(product_id=product.seller_product_id)
© 2025 ItemGraph. All Rights Reserved.