📉 SaaS Vendor Pricing Monitor
Pricing
from $10.00 / 1,000 results
📉 SaaS Vendor Pricing Monitor
Track hidden subscription cost hikes and plan changes across your software stack. Extract exact previous vs current prices for contract renewal leverage.
📉 SaaS Vendor Pricing Monitor
Pricing
from $10.00 / 1,000 results
Track hidden subscription cost hikes and plan changes across your software stack. Extract exact previous vs current prices for contract renewal leverage.
You can access the 📉 SaaS Vendor Pricing Monitor programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.
1import { ApifyClient } from 'apify-client';2
3// Initialize the ApifyClient with your Apify API token4// Replace the '<YOUR_API_TOKEN>' with your token5const client = new ApifyClient({6 token: '<YOUR_API_TOKEN>',7});8
9// Prepare Actor input10const input = {11 "vendors": [12 {13 "id": "stripe",14 "name": "Stripe",15 "criticality": "high",16 "owner": "Procurement",17 "tags": [18 "payments",19 "renewal-q3",20 "strategic vendor"21 ],22 "urlPacks": {23 "pricing": [24 {25 "id": "stripe-pricing",26 "name": "Stripe Pricing",27 "url": "https://stripe.com/pricing",28 "includePatterns": [29 "pricing",30 "annual",31 "enterprise",32 "billing"33 ],34 "excludePatterns": [35 "cookie",36 "sign in"37 ]38 }39 ],40 "terms": [41 {42 "id": "stripe-terms",43 "name": "Stripe Services Agreement",44 "url": "https://stripe.com/legal/ssa",45 "includePatterns": [46 "fees",47 "renewal",48 "termination",49 "liability"50 ],51 "excludePatterns": [52 "cookie",53 "sign in"54 ]55 }56 ]57 }58 }59 ]60};61
62// Run the Actor and wait for it to finish63const run = await client.actor("taroyamada/vendor-change-monitor").call(input);64
65// Fetch and print Actor results from the run's dataset (if any)66console.log('Results from dataset');67console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);68const { items } = await client.dataset(run.defaultDatasetId).listItems();69items.forEach((item) => {70 console.dir(item);71});72
73// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docsThe Apify API client for JavaScript is the official library that allows you to use 📉 SaaS Vendor Pricing Monitor API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.
Install the apify-client
$npm install apify-clientOther API clients include: