DEV Community

Cover image for PricePulse: Real-Time Price Search API for Carousell & Amazon SG - 100 Free Requests/Day
rock2089
rock2089

Posted on

PricePulse: Real-Time Price Search API for Carousell & Amazon SG - 100 Free Requests/Day

PricePulse: Real-Time Price Search API for Carousell & Amazon SG - 100 Free Requests/Day

Manually checking prices across Carousell, Amazon, and other marketplaces is a pain. Wouldn't it be great if there was a simple API that searches product prices across multiple platforms with a single request?

That's exactly what I built: PricePulse API - and it's live and ready to use.

What is PricePulse?

PricePulse is a lightweight, RESTful API that aggregates real-time product listings and prices from Carousell Singapore and Amazon Singapore through one unified endpoint.

Send a search query, and PricePulse returns structured JSON with titles, prices, images, URLs, and platform info - ready to power your app, website, or e-commerce tool.

Quick Example

GET https://pricepulseapi.site/api/v1/search?q=iphone+15&limit=5&api_key=YOUR_KEY
Enter fullscreen mode Exit fullscreen mode

Returns:

{
  "results": [
    {
      "title": "iPhone 15 Pro Max 256GB",
      "price": 1298,
      "currency": "SGD",
      "platform": "carousell",
      "url": "...",
      "image": "..."
    }
  ]
}
Enter fullscreen mode Exit fullscreen mode

Pricing (Developer-Friendly)

Plan Price Daily Requests
Free $0 100 requests/day
Starter $10/month 10,000 requests/day
Pro $50/month 100,000 requests/day

The Free tier gives you 100 requests per day, completely free - no credit card required. Just sign up, grab an API key, and start searching.

Why PricePulse?

  • Simple: One endpoint, JSON response, works out of the box
  • Fast: Results in under 2 seconds
  • Free to start: 100 daily requests at no cost
  • Easy integration: Works with any language - Python, JavaScript, Go, Rust, you name it
  • Growing: More platforms and features coming soon

Getting Started

  1. Sign up at pricepulseapi.site for your free API key
  2. Start searching: curl "https://pricepulseapi.site/api/v1/search?q=laptop&api_key=YOUR_KEY"
  3. Scale up: Upgrade when you need more

Python Example

import requests

api_key = "your_api_key_here"
url = f"https://pricepulseapi.site/api/v1/search?q=airpods+pro&api_key={api_key}"
response = requests.get(url)
data = response.json()

for item in data["results"]:
    print(f"{item['title']} - ${item['price']}")
Enter fullscreen mode Exit fullscreen mode

Node.js Example

const res = await fetch(`https://pricepulseapi.site/api/v1/search?q=ps5&api_key=${API_KEY}`);
const data = await res.json();
console.log(data.results);
Enter fullscreen mode Exit fullscreen mode

Use Cases

  • Price monitoring apps - Track price changes over time
  • Shopping comparison tools - Show the best deals across platforms
  • Market research - Analyze pricing trends in Singapore
  • E-commerce bots - Build automated deal finders
  • Hackathon projects - The free tier is generous enough for any MVP

What's Next?

I'm actively working on:

  • More marketplaces (Shopee, Lazada)
  • Historical price tracking
  • WebSocket real-time alerts
  • Better documentation and SDKs

Try It Today

Head over to pricepulseapi.site, grab your free API key, and start building something cool.

Questions or feature requests? Leave a comment - I'd love to hear your feedback!


Built with love in Singapore. Data sourced from Carousell and Amazon SG.

Top comments (0)