{"id":50364433,"url":"https://github.com/comparedge/saas-price-check","last_synced_at":"2026-05-30T03:03:11.364Z","repository":{"id":354252241,"uuid":"1222833552","full_name":"comparedge/saas-price-check","owner":"comparedge","description":"GitHub Action to check SaaS pricing from ComparEdge. Monitor price changes for your tech stack.","archived":false,"fork":false,"pushed_at":"2026-04-27T18:52:51.000Z","size":5,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-27T20:28:02.611Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://comparedge.com","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/comparedge.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-27T18:51:34.000Z","updated_at":"2026-04-27T19:04:12.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/comparedge/saas-price-check","commit_stats":null,"previous_names":["comparedge/saas-price-check"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/comparedge/saas-price-check","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/comparedge%2Fsaas-price-check","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/comparedge%2Fsaas-price-check/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/comparedge%2Fsaas-price-check/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/comparedge%2Fsaas-price-check/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/comparedge","download_url":"https://codeload.github.com/comparedge/saas-price-check/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/comparedge%2Fsaas-price-check/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33678271,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-30T02:00:06.278Z","response_time":92,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-05-30T03:03:08.564Z","updated_at":"2026-05-30T03:03:11.357Z","avatar_url":"https://github.com/comparedge.png","language":"JavaScript","funding_links":[],"categories":["AI / MCP Integration"],"sub_categories":["Top Categories by Product Count"],"readme":"# ComparEdge SaaS Price Check\n\n\u003e GitHub Action that checks current SaaS pricing data from the [ComparEdge](https://comparedge.com) API.\n\u003e SaaS pricing data from ComparEdge. No API key required.\n\n[![GitHub Marketplace](https://img.shields.io/badge/Marketplace-ComparEdge%20SaaS%20Price%20Check-blue?logo=github)](https://github.com/marketplace/actions/comparedge-saas-price-check)\n\n---\n\n## Why use this?\n\nModern engineering teams use 20–50 SaaS tools. Prices change quietly. This action:\n\n- 🔍 Monitors pricing for your exact tech stack\n- 🚨 Alerts when a tool exceeds your budget threshold\n- 📊 Generates cost reports in your CI logs\n- 🆓 Completely free — powered by the open ComparEdge API\n\n---\n\n## Quick start\n\n```yaml\n- uses: comparedge/saas-price-check@v1\n  with:\n    products: 'notion,slack,linear,github'\n    max-price: '50'\n```\n\n---\n\n## Inputs\n\n| Input | Required | Default | Description |\n|-------|----------|---------|-------------|\n| `products` | No | `''` | Comma-separated product slugs to check |\n| `category` | No | `''` | Category slug (e.g. `crm`, `llm`, `project-management`) |\n| `max-price` | No | `''` | Alert if starting price exceeds this USD/mo amount |\n| `output-format` | No | `'table'` | Output format: `table`, `json`, or `csv` |\n\n\u003e If neither `products` nor `category` is specified, the top 20 products are returned.\n\n---\n\n## Outputs\n\n| Output | Description |\n|--------|-------------|\n| `products-json` | JSON array of checked products with current pricing |\n| `total-products` | Number of products checked |\n| `alerts` | Number of price alerts triggered |\n\n---\n\n## Examples\n\n### Weekly price monitor\n\n```yaml\nname: SaaS Price Monitor\non:\n  schedule:\n    - cron: '0 9 * * 1'   # Every Monday at 9am UTC\n\njobs:\n  check-prices:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Check SaaS prices\n        uses: comparedge/saas-price-check@v1\n        with:\n          products: 'notion,slack,linear,figma,vercel,github,datadog'\n          max-price: '30'\n```\n\n### Check entire category\n\n```yaml\n- uses: comparedge/saas-price-check@v1\n  with:\n    category: 'llm'\n    output-format: 'json'\n```\n\n### Use outputs in subsequent steps\n\n```yaml\n- uses: comparedge/saas-price-check@v1\n  id: prices\n  with:\n    products: 'notion,slack'\n\n- name: Show results\n  run: |\n    echo \"Products checked: ${{ steps.prices.outputs.total-products }}\"\n    echo \"Alerts: ${{ steps.prices.outputs.alerts }}\"\n    echo '${{ steps.prices.outputs.products-json }}' | jq '.'\n```\n\n---\n\n## Available product slugs\n\nBrowse all products at **[comparedge.com](https://comparedge.com)** or query the API directly:\n\n```\nGET https://comparedge-api.up.railway.app/api/v1/products?limit=50\n```\n\n**Popular slugs:** `notion`, `slack`, `linear`, `figma`, `vercel`, `github`, `gitlab`, `datadog`, `pagerduty`, `jira`, `confluence`, `asana`, `monday`, `hubspot`, `salesforce`, `intercom`, `zendesk`, `stripe`, `twilio`, `sendgrid`\n\n---\n\n## Categories\n\n`crm` · `llm` · `project-management` · `analytics` · `monitoring` · `communication` · `devtools` · `marketing` · `finance` · `hr` · `security` · `storage` · `email` · `payment` · `video` · `support`\n\n---\n\n## Data source\n\n[comparedge.com](https://comparedge.com) — independent SaaS comparison platform. Data is updated regularly from public sources.\n\n---\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcomparedge%2Fsaas-price-check","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcomparedge%2Fsaas-price-check","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcomparedge%2Fsaas-price-check/lists"}