API Access
SaaS Pricing Data API
Integrate real-time pricing data for 500+ SaaS tools into your application. RESTful JSON API with simple authentication.
Free
$0forever
Get started with the CompareTiers API at no cost.
- 100 requests per day
- Search tools by name or category
- Compare up to 5 tools per request
- JSON responses
- Community support
Most Popular
Growth
$49/mo
For teams and apps that need reliable, high-volume access.
- 10,000 requests per day
- Everything in Free
- Pricing history snapshots
- Priority rate limits
- Email support
Enterprise
$199/mo
Unlimited access for production applications and integrations.
- Unlimited requests
- Everything in Growth
- Webhook notifications for price changes
- Dedicated support
- Custom SLA
Quick Start
Authenticate with your API key in the x-api-key header.
curl
# Search tools
curl -H "x-api-key: YOUR_API_KEY" \
"https://comparetiers.com/api/v1/tools?q=slack&category=communication"
# Compare tools side by side
curl -H "x-api-key: YOUR_API_KEY" \
"https://comparetiers.com/api/v1/compare?tools=slack,microsoft-teams"JavaScript
const response = await fetch(
"https://comparetiers.com/api/v1/tools?q=slack",
{
headers: { "x-api-key": "YOUR_API_KEY" },
}
);
const { data, pagination } = await response.json();
console.log(data[0].name, data[0].tiers);API Endpoints
GET /api/v1/toolsSearch and browse SaaS tools with pricing data
q — Search by tool name
category — Filter by category slug
page, pageSize — Pagination (max 100)
GET /api/v1/compareCompare up to 5 tools side by side
tools — Comma-separated slugs (e.g. slack,asana)
Returns full pricing tiers with features for each tool
Ready to get started?
Create a free account and generate your API key in seconds.