Build with the PricePulse API

Get started in 5 minutes. No auth, no credit card. 40+ SaaS companies tracked.

1. Make your first request
Get all SaaS pricing data with one GET request.
JavaScript
const res = await fetch('https://getpricepulse.com/api/companies');
const data = await res.json();
console.log(data.companies); // Array of 40+ SaaS companies
Python
import requests
res = requests.get('https://getpricepulse.com/api/companies')
data = res.json()
print(data['companies'])
cURL
curl https://getpricepulse.com/api/companies | jq '.companies'
2. Filter by what matters
Find pricing changes relevant to your use case.
๐Ÿ“Š Find all CRM price increases
Get pricing changes for sales tools in your tech stack.
fetch('https://getpricepulse.com/api/companies?category=crm&changed=true')
  .then(r => r.json())
  .then(d => d.companies.forEach(c => {
    console.log(`${c.name}: +${c.change_pct}%`);
  }));
๐Ÿ” Look up a specific company
Check if your tool raised prices recently.
fetch('https://getpricepulse.com/api/companies?slug=notion')
  .then(r => r.json())
  .then(d => console.log(d.company.summary));
๐Ÿ’ฐ Find companies that raised prices
See which tools have increased costs since Jan 2024.
fetch('https://getpricepulse.com/api/companies?changed=true')
  .then(r => r.json())
  .then(d => {
    const hikes = d.companies.filter(c => c.change_pct > 20);
    console.log(`${hikes.length} tools raised prices >20%`);
  });
3. What to build
Ideas for apps using this API.
๐Ÿ“Œ Slack bot โ€” Post weekly price changes to #finance. Built in < 1 hour.

// Slack message template
const priceHikes = companies.filter(c => c.change_type === 'price_increase');
slack.postMessage({
  text: `${priceHikes.length} tools raised prices this week`,
  blocks: priceHikes.map(c => ({
    type: 'section',
    text: { type: 'mrkdwn', text: `*${c.name}*\n${c.summary}` }
  }))
});
๐Ÿ“Š Budget dashboard โ€” Embed live pricing data in your internal tools. Show cost impact of price changes.
๐Ÿค– Cost forecast โ€” Track pricing trends and project team budget based on historical changes.
๐Ÿ“ฌ Email digest โ€” Send founders a weekly roundup of price changes. Upsell to monitoring service.
4. Understand the response
Each company object includes:
{
  "slug": "notion",
  "name": "Notion",
  "category": "project-management",
  "url": "notion.so/pricing",
  "last_change": "2026-03",
  "change_type": "price_increase",
  "change_pct": 25,
  "old_price": "$8/member/mo",
  "new_price": "$10/member/mo",
  "summary": "Raised Plus plan price from $8 to $10/member/mo",
  "page": "https://getpricepulse.com/companies/notion-pricing.html"
}
๐Ÿ’ก Pro tip: Each company has a page URL with detailed pricing history. Link to it for more context on price changes.
๐Ÿ”„ Note: The API response is cached for 1 hour. For real-time monitoring, use the PricePulse dashboard or sign up for email alerts.
๐Ÿ“š Full docs: See pricing-api.html for the complete API reference, including all query parameters and response schemas.
5. Ready to monitor automatically?
The API gives you historical data. PricePulse Pro monitors 24/7 and alerts you in minutes.
Start free monitoring โ†’ Full API docs