PricePulse is now on PyPI πŸŽ‰

2026-06-21 Β· Release Announcement
pip install pricepulse β€” that's all it takes to start monitoring e-commerce prices.

I'm excited to announce that the PricePulse Python SDK is now available on PyPI!

Install

pip install pricepulse

Quick Start

from pricepulse import PricePulse

# Get your free key at pricepulse.dev/pricing
client = PricePulse(api_key="your-key")

# Search products across Carousell SG
results = client.search("iPhone 15", source="carousell")
for p in results:
    print(f"{p['title']} - ${p['price']}")

# Trending products
trending = client.trending()

# Cross-platform arbitrage
deals = client.arbitrage(min_profit=20)

What is PricePulse?

PricePulse is a REST API that provides real-time product price data from Southeast Asian e-commerce platforms:

Features

Pricing

Free:   100 req/day
Pro:    $10/mo (1,000 req/day)
Enterprise: $50/mo (10,000 req/day)
Get Your Free API Key β†’

GitHub Β· API Docs Β· Live Demo