The Problem
Every e-commerce developer eventually faces the same wall: pricing data is locked inside marketplaces.
Scraping is fragile. Proxy services cost $500+/month. Public APIs either don't exist or cost a fortune.
So I built PricePulse API โ a simple REST API that returns structured pricing data from major e-commerce platforms.
What It Does
import requests
API_KEY = "your_key_here"
headers = {"Authorization": f"Bearer {API_KEY}"}
# Search Carousell Singapore
r = requests.get(
"https://pricepulseapi.site/api/v1/search",
params={"q": "iphone 15", "source": "carousell"},
headers=headers
)
print(r.json())
Returns clean, structured JSON:
{
"query": "iphone 15",
"results": [
{
"title": "iPhone 15 Pro Max 256GB",
"price": "$1,299",
"currency": "SGD",
"url": "https://carousell.sg/...",
"source": "carousell"
}
]
}
Marketplaces Supported
| Source | Region | Status |
|---|---|---|
| Carousell | Singapore | Live |
| Amazon SG | Singapore | Live |
| Lazada | Southeast Asia | Live |
| Vinted | Europe | Live |
| Bukalapak | Indonesia | Live |
| More coming |
Pricing
| Plan | Calls/Day | Price |
|---|---|---|
| Free | 100 | $0 |
| Starter | 1,000 | $10 |
| Pro | 10,000 | $50 |
Quick Start
- Sign up at pricepulseapi.site โ get your free API key instantly
- Make your first call โ you get 100 free queries immediately
- Upgrade when you need more โ PayPal checkout, instantly active
Python package:
pip install pricepulse-api
from pricepulse_api import PricePulse
client = PricePulse(api_key="your_key")
results = client.search("macbook pro", source="amazon")
for item in results[:5]:
print(f"{item['title']} โ {item['price']}")
Why Free?
Building trust takes time. I want you to test the data quality before paying a cent. If 100 calls/day covers your needs, great. If you need more, the paid plans start at $10/month.
The API has been running reliably for over a month. It's production-ready.
Try It Now
pricepulseapi.site โ Sign up takes 10 seconds, API key delivered instantly.
Happy building ๐
United States
NORTH AMERICA
Related News
Secret Claude Tracker Shocks Users After Anthropic's Anti-Surveillance Stance
12h ago
EV Batteries Defy Expectations, Last Hundreds of Thousands of Miles
1d ago
GBase 8a Performance Anomaly Case Study: How a Single Parameter Change Sparked a Chain Reaction
1d ago
Who Else Has Inherited a Codebase With Zero Comments and a Prayer?
1d ago
ๅฎ็พ็ๅนณๅบธ
4h ago