The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Pricewatcha listing page.
The Pricewatcha API is the Structured Product Price Intelligence Platform for developers, automation and AI Agents.
The Pricewatcha API derives from the pricewatcha.com application. It provides price tracking, alerts and product intelligence beyond the Pricewatcha dashboard. This repository documents the public HTTP API, OpenAPI schema, official SDKs, MCP server and examples. It does not contain the production web application or scrapers.
Status: Available · Version: v1 · Base URL: https://pricewatcha.com/api/v1
Interactive API keys (browser): Developer page
Optional: verify connectivity with GET https://pricewatcha.com/api/v1/health. Then pick one of the three paths below.
Use demo product IDs from the demo catalog or search the catalog:
Search is case-insensitive token AND (all terms must appear; word order does not matter). Results include the full Pricewatcha catalog, not only URLs submitted via POST /track. Use product_id from search for product and price-history endpoints (prod_* or demo_*).
POST /track returns HTTP 200 with a bounded server-side long-poll (~25s). Use product_id from the response for price history. Optional: send Authorization: Bearer pwk_live_… for higher track, search and product-read quotas.
Fast shops return status: "completed" with the full product in one call. Slow shops return status: "running" with a job_id. Poll GET https://pricewatcha.com/api/v1/jobs/{jobId} until the job is completed or failed. More detail: Async track & poll.
Create a key on the Developer page, then:
For authentication and data boundaries, see Authentication and Data boundaries.
No credential required for catalog search, product detail, price history and async track/poll. Without a key those endpoints use anonymous rate limits. Send an API key to use the higher per-account track, search and product-read quotas.
Protected API v1 endpoints (alerts, webhooks, authenticated track callbacks) use:
| Credential | Format | When to use |
|---|---|---|
| API key | pwk_live_… | Recommended for scripts, agents, n8n and server integrations. Create on the Developer page. |
| Login session token | JWT from POST https://pricewatcha.com/api/auth/login | Website UI and headless key bootstrap only |
Do not use the login session token for alerts, webhooks or other API v1 calls once you have an API key.
See Access model for which routes are public vs authenticated.
Log in on the Developer page to create and manage API keys in your browser. The full secret is shown once at creation.
For agents without a browser, use headless key bootstrap below.
Using your key on protected endpoints:
If an agent must obtain API credentials without a browser, authenticate once with the same email and password as on the website, create an API key, then use pwk_live_… for all further calls. This is not a separate agent login: it is the normal Pricewatcha account login exposed as an HTTP endpoint.
POST https://pricewatcha.com/api/auth/login accepts JSON email and password and returns a short-lived access_token (login session token). The Developer page login modal calls the same endpoint; in a script or agent you call it directly with curl or your HTTP client.
POST https://pricewatcha.com/api/auth/register).access_token only to create keys; for alerts and webhooks use the pwk_live_… key from step 2.Step 1: Login
Response (HTTP 200), AuthResponse:
access_token (string): login session token (JWT)token_type (string): always "bearer"user (object): id (string, UUID), email (string), email_verified (boolean)Send the token as Authorization: Bearer <access_token> in step 2. Session tokens expire; do not store them as the long-term credential for an agent.
Step 2: Create API key
Response (HTTP 200), CreateApiKeyResponse:
id (integer): key IDname (string): label from the requestkey_prefix (string): first 12 characters of the key (for display)key (string): full secret; returned only on create, not on listis_active (boolean)created_at (string, ISO 8601 datetime)last_used_at (string or null)revoked_at (string or null)Store key securely. Use it on alerts, webhooks and other protected API v1 endpoints, not the session token from step 1.
| Method | Path | Auth | Description |
|---|---|---|---|
GET | /api/v1/health | - | Health check |
GET | /api/v1 | - | Discovery and disclaimer |
POST | /api/v1/track | - | URL ingestion (long-poll) |
GET | /api/v1/jobs/{jobId} | - | Job status |
GET | /api/v1/products/{productId} | - | Product intelligence |
GET | /api/v1/products/{productId}/price-history | - | History and trend |
GET | /api/v1/search?q= | - | Keyword search (limit max 200) |
GET | /api/v1/openapi.json | - | Live OpenAPI 3.1 |
POST | /api/auth/login | - | Login (short-lived session token) |
POST | /api/keys | Session token | Create API key |
GET / DELETE | /api/keys … | Session token or key | List / revoke keys |
* | /api/v1/alerts … | API key | Price alerts |
* | /api/v1/watchlist / …/watch | API key | Continuous price watchlist |
* | /api/v1/webhooks … | API key | Webhook subscriptions |
Machine-readable contract: openapi/openapi.yaml · Live: GET https://pricewatcha.com/api/v1/openapi.json
The following limits apply and may change without notice.
| Class | Endpoint | Anonymous | Authenticated (API key) |
|---|---|---|---|
| Track (concurrent) | POST /track | ~2 in-flight jobs | ~4 in-flight jobs |
| Track (burst) | POST /track | ~10 jobs / 60s | ~20 jobs / 60s |
| Track (hourly) | POST /track | ~40 jobs / hour | ~120 jobs / hour |
| Track (daily) | POST /track | ~80 jobs / day | ~400 jobs / day |
| Job poll | GET /jobs/{id} | ~40 req/min per client | same |
| Search (burst) | GET /search | ~20 req / 60s | ~40 req / 60s |
| Search (hourly) | GET /search | ~60 req / hour | ~180 req / hour |
| Search (daily) | GET /search | ~200 req / day | ~1000 req / day |
| Read (burst) | /products, /price-history | ~60–120 req/min per client | ~240 req / 60s |
| Read (hourly) | /products, /price-history | ~180 req / hour | ~540 req / hour |
| Read (daily) | /products, /price-history | ~600 req / day | ~3000 req / day |
| Health | /health and / | Unlimited | Unlimited |
Send Authorization: Bearer pwk_live_… on POST /track, GET /search, or product reads to use the authenticated tier. Those endpoints remain available without a key at the anonymous limits.
Client identity: anonymous limits are keyed by client IP. Behind Cloudflare the API prefers
CF-Connecting-IPoverX-Forwarded-Forso edge proxy IPs are not treated as distinct clients. The hosted MCP server forwards a stableX-Pricewatcha-Client-Id(OAuth token hash, else connecting-IP hash) with a shared proxy secret so MCP callers are not all bucketed under one egress IP. Authenticated track, search and product-read quotas are keyed by account (owner_id), not IP.
Monitor
X-RateLimit-Remainingand honor429with exponential backoff.X-RateLimit-Policynames which window the headers refer to (track,track_hourly,track_daily,track_concurrent,job_read,search,search_hourly,search_daily,read,read_hourly, orread_daily).
Track quotas are counted from persisted jobs (api_track_jobs by client key or account), so they apply across multiple app instances. A long-poll that holds the HTTP connection for ~25s still counts as one track job when created — sequential tracks spaced farther apart than 60s will not trip the burst window, but hourly/daily and concurrent caps still apply.
Agents should prefer: start track → poll GET /jobs/{id} with backoff (not every 1–2s) → read product/history once complete. Retrying POST /track with the same URL while that job is still queued/processing reuses the existing job and does not consume another concurrent slot. Jobs left queued/processing longer than the scrape timeout (default 600s) are failed so slots cannot leak across deploys.
Search and product-read quotas are in-memory per app instance (not shared across Railway replicas the way track jobs are). Authenticated callers still get the higher per-account windows. Polling the same catalog queries on a short interval will still trip the hourly/daily search windows.
Exact numbers may change without notice (env overrides: API_V1_TRACK_*, API_V1_TRACK_AUTH_*, API_V1_JOB_READ_*, API_V1_READ_*, API_V1_READ_AUTH_*, API_V1_SEARCH_*, API_V1_SEARCH_AUTH_*).
When rate limiting is active, responses may include:
| Header | Description |
|---|---|
X-RateLimit-Limit | Maximum requests in the window |
X-RateLimit-Remaining | Requests left in the window |
X-RateLimit-Reset | Unix timestamp when the window resets |
X-RateLimit-Policy | Which window the headers describe |
When limited, the API returns 429 Too Many Requests with a JSON body:
Agent guidance: honor 429, wait until retry_after_seconds / X-RateLimit-Reset, and reduce poll frequency on job status endpoints. Prefer spreading tracks over time rather than bursting near the hourly/daily caps. Anonymous 429 responses mention that an API key raises quotas.
Operators can receive an email when hourly/daily/concurrent track limits or hourly/daily search and product-read limits trip (cooldown per client; see API_V1_RATE_LIMIT_ALERT_*).
Sustained abuse of anonymous daily quotas (track, search, or product reads — for example exhausting the daily limit on several days from the same IP) may trigger an in-app restriction, not only 429.
X-Pricewatcha-Restriction: notice and X-Pricewatcha-Restriction-Message with the pending-block warning. Rate limits still apply.403 with error.code access_restricted.Email info@pricewatcha.com to discuss terms or restore access. Do not retry until access is restored. Retries will not lift the restriction.
POST /api/v1/track submits a product URL and waits up to ~25 seconds (long-poll). No API key is required. Send Authorization: Bearer pwk_live_… to use higher per-account track quotas.
status: "completed" with full product in the same responsestatus: "running" + job_id: poll GET /api/v1/jobs/{jobId} until completed or failedPOST /track for the same URL while a job is in flight returns that job instead of starting another (and instead of a concurrent 429)watch: true enrolls the product for continuous scheduler updates; refresh: true forces a re-scrape even if the URL is already in the catalogJobs are retained for 72 hours. After expiry, GET /jobs/{jobId} returns 404: use GET /products/{productId} instead.
Response (200) when the scrape completes within the long-poll window:
Response (200) when still running after the long-poll timeout:
| Status | Meaning |
|---|---|
queued | Job accepted, waiting to start |
running | Ingestion in progress |
completed | Product intelligence in product |
failed | Scrape failed: read structured error (HTTP 200 job lookup) |
POST /track with { "url": "..." } → 200running or queued, poll GET /jobs/{jobId} every 2–5 secondscompleted, read product from the job or GET /products/{productId}failed, surface error.code; backoff before retryingWhen polling GET /jobs/{jobId}, interpret HTTP status and body together:
| Response | Meaning | What to do |
|---|---|---|
| HTTP 404 | No job with this job_id (wrong ID or job expired after 72h) | Stop polling; start a new POST /track if you still need the product |
HTTP 200 with "status": "failed" | Job exists, but scraping failed | Read error.code in the JSON body (e.g. scrape_target_not_found) |
A 404 is a lookup problem. A 200 with failed is a completed job whose scrape did not succeed.
Authenticated clients can receive a push when a track job finishes: use callback_url (one-off) or webhook_id (existing subscription). Mutually exclusive. Callbacks do not consume extra quota beyond the authenticated track job.
With callback_url, the track response may include callback_secret (whsec_…) once: same signing as subscription webhooks.
When the job finishes, Pricewatcha sends a webhook with event type track_job_completed or track_job_failed (same payload shape as other webhooks). If you do not use push delivery, you can still wait on POST /track (long-poll) or poll GET /jobs/{jobId} until the job reaches a terminal state.
Note: Anonymous
POST /trackwithcallback_urlorwebhook_idreturns400 auth_required_for_callback. MCP tools use track → poll (nocallback_urlin v1).
Official Python and TypeScript SDKs may provide track_and_wait() / trackAndWait(): a helper that calls POST /track, then polls GET /jobs/{jobId} until the job is completed or failed and returns the result. The HTTP API stays async-first; the helper only saves you from writing the poll loop yourself. See SDKs.
Repeated POST /track for the same URL may return completed quickly with existing intelligence.
Long-poll default is ~25 seconds. For slow shops, poll GET /jobs/{jobId} instead of extending the track timeout.
Keyword search is case-insensitive. The query is split into tokens; a product matches when every token appears in the normalized product name, URL, platform/shop or related fields. Word order does not matter, and punctuation such as hyphens and slashes is treated as whitespace (Darth-Vader matches Darth Vader). Results cover the full Pricewatcha catalog, not only URLs submitted via POST /track.
Exact contiguous phrases still rank above other token matches when both match.
GET https://pricewatcha.com/api/v1/search?q=…&limit=…
Optional limit: default 50, maximum 200. Applied after exclude-term filtering.
Search is rate-limited separately from product reads. Anonymous callers get ~20 requests / 60s, ~60 / hour, ~200 / day; an API key raises that to ~40 / 60s, ~180 / hour, ~1000 / day per account. Honor HTTP 429 and X-RateLimit-Policy; see Rate limits.
q supports Google-style minus-prefixed exclude terms. q=iPhone+15+-cover+-case returns products matching both "iPhone" and "15" that do not contain "cover" or "case" in the searchable fields (case-insensitive). A lone - is ignored.
Use product_url for direct linking without an extra GET /products/{id} call.
Results always include google_product_category_id and google_product_category_name (null when unset). You do not need an extra query parameter.
Preview demo products are always available for integration testing:
See the demo catalog on GitHub.
Catalog price intelligence (current price, history, product metadata) is available without authentication. User-specific data (accounts, emails, alert settings) is never exposed on public read endpoints.
Authenticated clients can manage their own watchlist via /api/v1/watchlist and /api/v1/products/{id}/watch (API key required). Other users' watchlists are never returned.
product_id, name, shop/platform, product URLdata_source and data_source_label when price data comes directly from a merchant feed (merchant_feed → "Direct merchant data")google_product_category_id and google_product_category_name on product detail and search (null when unset). Search does not require an extra query parameter."preview": trueSearch, product detail and price history return the same fields whether the product was added via dashboard, API, MCP or demo data.
Only products on an account watchlist (dashboard or API watch / alert / product-scoped price webhook) are refreshed by the price scheduler. One-shot POST /track without watch does not enroll the product for ongoing updates.
| Prefix | Meaning |
|---|---|
demo_* | Static preview samples (e.g. demo_iphone_15_pro) |
prod_* | Opaque stable ID per catalog product (one per URL entity) |
Use product_id from search or a completed track job for GET /products/{productId} and .../price-history.
Deliveries include product-level event data only (prices, product IDs, event type), not user emails or account details. Verify authenticity with the subscription signing secret (whsec_...); see Webhooks.
If you build on this API, disclose to your users that prices are informational and that merchant sites are authoritative.
Non-success responses use a structured error object. Inspect error.code: do not parse free-text message values.
| Field | Description |
|---|---|
code | Stable machine identifier |
message | Human-readable detail (not for branching logic) |
http_status | HTTP status echoed in the body |
retry_recommended | Whether a retry may help |
retry_after_seconds | Hint when rate-limited (may be null) |
| Code | Typical HTTP | When |
|---|---|---|
invalid_input_format | 400 | Malformed JSON or parameters |
invalid_url_type | 400 | URL is a search/listing page, unsupported shop, etc. |
job_not_found | 404 | Unknown or expired job_id (jobs expire after 72h) |
product_not_found | 404 | Unknown product_id |
scrape_target_not_found | 404 | Product page not found on the shop |
scrape_chain_exhausted | 502 | All scraper strategies failed |
scrape_timeout | 200 (job failed) | Track job exceeded the scrape timeout, or a queued/processing job was reaped after a worker loss |
rate_limited | 429 | Track/search/read quota exceeded: honor retry_after_seconds. Anonymous traffic is per client IP; API keys use higher per-account track, search and product-read quotas. |
access_restricted | 403 | The client IP is blocked after an abuse notice. Email info@pricewatcha.com. Do not retry until access is restored. During the earlier grace period the API still works and sends X-Pricewatcha-Restriction: notice. |
internal_error | 500 | Unexpected server error |
| Code | Typical HTTP | When |
|---|---|---|
unauthenticated | 401 | Missing or invalid bearer token |
invalid_session_token | 401 | Expired or invalid login session (not an API key) |
invalid_api_key | 401 | Revoked or unknown API key |
api_key_limit_reached | 403 | Account key quota exceeded |
api_key_not_found | 404 | Key id not found |
| Code | Typical HTTP | When |
|---|---|---|
alert_already_exists | 409 | One alert per user per product: use PATCH |
alert_not_found | 404 | Unknown alert_id |
webhook_not_found | 404 | Unknown subscription |
webhook_limit_reached | 403 | Subscription quota exceeded |
auth_required_for_callback | 400 | callback_url / webhook_id on POST /track without auth |
callback_conflict | 400 | Both callback_url and webhook_id set |
invalid_callback_url | 400 | Callback URL not HTTPS or blocked target |
error.code, not message.retry_recommended is true, use exponential backoff and respect retry_after_seconds.GET /jobs/{jobId} with status: "failed" is a job failure, not a transport error.Full schemas: live GET https://pricewatcha.com/api/v1/openapi.json and the OpenAPI spec on GitHub.
Create price alerts that send email notifications and/or fire webhooks when a price moves.
Each tracked product has one alert record per user. Combine any of:
notify_on_drop: notify on any price drop (no threshold required)notify_on_rise: notify on any price increase (no threshold required)min_threshold_price: notify when price drops to or below this valuemax_threshold_price: notify when price rises to or above this valueAt least one of those four settings is required.
Creating an alert also watches the product for your account so the price scheduler keeps it updated (see Watchlist).
All endpoints require an API key in Authorization: Bearer …. Full schemas: GET https://pricewatcha.com/api/v1/openapi.json (tag alerts).
| Method | Path | Description |
|---|---|---|
GET | /api/v1/alerts | List your alerts. Optional: ?product_id=prod_… |
POST | /api/v1/alerts | Create alert. 409 alert_already_exists if one exists: use PATCH |
GET | /api/v1/alerts/{alertId} | Get one alert |
PATCH | /api/v1/alerts/{alertId} | Update thresholds, directional flags, webhook URL, email, name, is_active |
DELETE | /api/v1/alerts/{alertId} | Delete (204) |
Notify whenever the price goes down — same as the dashboard Cheaper toggle:
Example response (201):
Opt into continuous price updates for products you care about. Watched products use the same scheduler path as the dashboard watchlist (user_products).
Anonymous POST /track remains a one-shot catalog ingestion. Without a watch (or an alert / product-scoped price webhook), prices are not refreshed on a schedule.
| Method | Path | Description |
|---|---|---|
GET | /api/v1/watchlist | List products you watch (limit, offset) |
GET | /api/v1/products/{productId}/watch | Watch status for one product |
POST | /api/v1/products/{productId}/watch | Start watching (idempotent) |
DELETE | /api/v1/products/{productId}/watch | Stop watching |
All endpoints require an API key in Authorization: Bearer …. Cap: 200 watched products per account (403 watch_limit_reached).
Example response (200):
Authenticated POST /track accepts:
watch: true — add the product to your watchlist when the job links a productrefresh: true — force a re-scrape even if the URL is already in the catalogThese actions also watch the product for your account:
POST /alerts)price_dropped, price_changed, …)DELETE /products/{productId}/watch fails with 409 alert_requires_watch while an active alert still exists for that product. Delete or deactivate the alert first.
Webhooks push signed HTTP POST requests when prices change, alert thresholds are crossed or authenticated track jobs complete.
Subscribe to event types globally or for a single product_id. Each event type is delivered as its own request.
| Scope | Behaviour |
|---|---|
Global (product_id omitted) | Price events for products you track (watchlist) or for which you have an active price alert. Not the full catalog. |
Scoped (product_id set) | Price events for that product only. Creating/updating a product-scoped subscription with price events also watches the product for scheduler updates. |
Test (POST /webhooks/{id}/test) | Sends a webhook_test payload to verify your endpoint; no product scope. |
Catalog-wide price streaming is not supported. Use the test endpoint to verify delivery, then track products or create alerts for the events you care about.
Manage subscriptions via POST https://pricewatcha.com/api/v1/webhooks. Full schemas: GET https://pricewatcha.com/api/v1/openapi.json (tags webhooks, alerts).
Note: Target URLs must use HTTPS and must not resolve to private or internal IP ranges.
| Event type | Trigger |
|---|---|
price_changed | Price moved by more than €0.01 |
price_dropped | Price decreased by more than €0.01 |
price_increased | Price increased by more than €0.01 |
new_historical_low | New price strictly lower than any previous observation |
price_alert_triggered | User alert fired (min/max threshold or directional drop/rise) |
track_job_completed | Authenticated POST /track finished successfully |
track_job_failed | Authenticated POST /track failed |
webhook_test | Only from POST /api/v1/webhooks/{webhook_id}/test |
price_droppedprice_alert_triggeredIncludes the same product and price blocks plus an alert object:
Every delivery includes:
X-Pricewatcha-Event-IdX-Pricewatcha-Event-TypeX-Pricewatcha-Timestamp (Unix seconds)X-Pricewatcha-Signature (sha256=<hex>)Signed string: "{timestamp}.{raw_body}" with HMAC-SHA256 and your webhook secret (whsec_…, shown once at subscription creation).
Warning: The webhook secret is shown only once. Store it securely: only
secret_prefixis shown afterward.
Failed deliveries retry up to 5 times: 1 min → 5 min → 30 min → 2 h → 12 h.
After 10 consecutive failures the subscription is auto-disabled.
Pricewatcha exposes a remote MCP endpoint: no local installation required. Connect your AI client with the URL below. Available tools include catalog reads (get_api_status, search_products, track_product, get_job_status, get_product, get_price_history), continuous watching (watch_product, unwatch_product, list_watchlist, get_watch_status), and price alerts (create_price_alert, list_price_alerts, get_price_alert, update_price_alert, delete_price_alert). Alert and watchlist tools require a Pricewatcha API key. Alerts can notify on any drop or rise without a numeric threshold; creating an alert also watches the product for scheduler updates.
For step-by-step setup, see Claude, ChatGPT, n8n and Make below.
What it enables: Ask Claude to search for products, track prices, check price history, watch products for continuous updates, set alerts and manage webhooks, all in natural language, directly in Claude.ai or the Claude desktop app.
Step 1: Open the Customize panel
Click Customize (sliders icon) in the left sidebar of Claude.ai or go to claude.ai/settings/connectors.
Step 2: Add a custom connector
Under Connectors, click + to add a new connector.
Step 3: Enter the MCP server URL
Enter a name (e.g. “Pricewatcha”) and paste:
Click Add.
Step 4: Done
Pricewatcha appears in your connector list with read-only tools (get_api_status, get_job_status, get_product, get_price_history, search_products, list_price_alerts, get_price_alert, list_watchlist, get_watch_status) and write tools (track_product, create_price_alert, update_price_alert, delete_price_alert, watch_product, unwatch_product). You can now use Pricewatcha in any Claude conversation.
Step 5: Configure tool permissions (optional)
Open the connector in your connector list (or return to claude.ai/settings/connectors) and expand Tool permissions.
For each tool — or for the whole Read-only / Write group — choose when Claude may call it:
| Setting | Meaning |
|---|---|
| Always allow | Claude calls the tool without asking each time |
| Require approval | Claude asks before each call (default for new connectors) |
| Never allow | Tool is blocked |
For everyday price checks and searches, set the read-only tools (or the whole read-only group) to Always allow. For track_product, alert and watchlist tools, pick Always allow if you want friction-free writes, or keep Require approval if you prefer to confirm first. Alert and watchlist tools need a Pricewatcha API key (pwk_live_...).
Same steps: Customize → Connectors → Add custom connector → paste https://mcp.pricewatcha.com. Tool permissions are configured the same way under Tool permissions in the connector settings.
Try:
Note:
track_productis a write tool because it creates a tracking job in the background. It does not modify or delete existing data. Alert tools (create_price_alert,update_price_alert,delete_price_alert) and watchlist tools (watch_product,unwatch_product,list_watchlist,get_watch_status) require an API key. Creating an alert also watches the product for continuous scheduler updates.
What it enables: Search products, track prices, get price history, watch products for continuous updates, set price alerts and manage webhooks, directly in ChatGPT via MCP.
Prerequisite: Developer Mode (one-time)
Custom MCP connectors require Developer Mode: Settings → Advanced → enable Developer Mode. Available on Plus, Pro, Team, Business, Enterprise and Edu (not on the free plan). Pricewatcha tools only work while Developer Mode stays on.
Step 1: Go to Settings → Apps and click Add custom connector.
Step 2: Paste the MCP URL:
Optional connector logo: PNG, max 10 KB. Download from https://pricewatcha.com/static/img/mcp/chatgpt-logo.png
Step 3: Authentication: Select OAuth. ChatGPT handles the flow; you may see a brief authorization prompt on first connect.
Step 4: Done. Example prompts:
Alert and watchlist tools (create_price_alert, watch_product, list_watchlist, …) need a Pricewatcha API key (pwk_live_...). Creating an alert also watches the product for continuous scheduler updates.
Warning: ChatGPT may show a DEV label on unverified third-party connectors. Pricewatcha only works while Developer Mode is enabled.
What it enables: Build automated price-monitoring workflows. Trigger actions when prices change or cross your alert threshold: no coding required.
Typical use case: When a tracked product drops below your threshold → send a Telegram, Slack or email notification with product name, shop, current price and alert name.
Note: A publicly accessible URL is only required if you run n8n locally (self-hosted on your own machine). If you use n8n Cloud or a server-hosted instance, your n8n webhook URL is already publicly accessible: skip the tunnel step.
webhook_url set to the n8n URL (see below).price_alert_triggered events are delivered when thresholds are crossed.cloudflared tunnel --url http://localhost:5678 (install with brew install cloudflared on macOS).https://abc123.trycloudflare.com)./webhook-test/abc123).https://abc123.trycloudflare.com/webhook-test/abc123.webhook_url in the Pricewatcha alert.Requires an API key:
When the current price is at or below min_threshold_price, Pricewatcha sends a price_alert_triggered event with this payload shape:
price_alert_triggered event.{{ $json.body.event_type }} equals price_alert_triggered.{{ $json.body.product.name }}{{ $json.body.product.shop }}{{ $json.body.price.new_price }} {{ $json.body.product.currency }}{{ $json.body.alert.name }}Note: The test endpoint requires a webhook subscription (
POST https://pricewatcha.com/api/v1/webhooks), not an alert.
Signature verification: Verify
X-Pricewatcha-Signature(HMAC-SHA256) in production: see Webhook signing.
Alternative: use the HTTP Request node: GET https://pricewatcha.com/api/v1/search?q=… or GET https://pricewatcha.com/api/v1/products/PRODUCT_ID/price-history.
What it enables: Same webhook-based automation as n8n: visual workflows without code.
| n8n | Make equivalent |
|---|---|
| Webhook Trigger | Webhooks → Custom webhook |
| IF node | Router or Filter |
| HTTP Request | HTTP → Make a request |
| Notification nodes | Email / Telegram / Slack |
curl as the n8n guide, use your Make URL as target_url).event_type.POST https://pricewatcha.com/api/v1/webhooks/{id}/test.Make free plan: Up to 1,000 operations/month including webhooks, enough for personal price monitoring.
Use price alert webhooks to drive automations: scenes, notifications or lighting when a tracked product hits your target price.
See Home Assistant and Loxone below.
What it enables: Trigger automations when a Pricewatcha price alert fires.
Typical use case: Price below threshold → mobile notification, toggle input_boolean.good_deal or run a script.
pricewatcha_price_drop → https://YOUR_HA_HOST/api/webhook/pricewatcha_price_drop).webhook_url (n8n guide shows the curl example).trigger.json.product.name, trigger.json.price.new_price, etc.Example automation (YAML):
No API key required for read endpoints. Polling is simpler but less real-time than webhooks.
Signature verification: Validate
X-Pricewatcha-Signaturein production: see Webhook signing.
What it enables: Poll current prices from Pricewatcha on a schedule and trigger Loxone programs when a price threshold is reached. Works with both Miniserver Generation 1 and Generation 2.
Loxone's Virtueller HTTP Eingang (Virtual HTTP Input) fetches a URL at a configurable interval and extracts values via Command Recognition. Each extracted value becomes a Loxone input that can be used in your programs.
Gen2 — direct HTTPS (no middleware needed)
Miniserver Gen2 supports HTTPS natively and can call the Pricewatcha API directly.
Gen1 — via LoxBerry https2http Plugin
Miniserver Gen1 does not support HTTPS. Install the https2http Plugin on LoxBerry. It acts as an HTTPS proxy: LoxBerry fetches the Pricewatcha HTTPS response and serves it to Loxone over HTTP.
Step 1 — Find your product ID
Search for your product and note the product_id (format: prod_... or use a demo product like demo_iphone_15_pro):
Step 2 — Create a Virtueller HTTP Eingang in Loxone Config
In Loxone Config, go to Periphery → Virtual Inputs → Virtual HTTP Input.
Set the URL based on your Miniserver generation:
| Generation | URL to enter |
|---|---|
| Gen2 (direct) | https://pricewatcha.com/api/v1/products/prod_YOUR_PRODUCT_ID |
| Gen1 (via LoxBerry) | http://YOUR_LOXBERRY_IP/plugins/https2http/?url=https://pricewatcha.com/api/v1/products/prod_YOUR_PRODUCT_ID |
Set the polling interval (Abfragezyklus), e.g. 3600 seconds (every hour).
No API key or authentication required — the product endpoint is public.
Step 3 — Add Virtueller HTTP Eingang Befehle (Command Recognition)
For each value you want to extract, add a Virtueller HTTP Eingang Befehl (Virtual HTTP Input Command) to the input. Command Recognition searches the raw JSON response for a pattern and extracts a value.
The Pricewatcha product API returns JSON like this:
Add one Befehl per value you need:
| Value | Command Recognition pattern |
|---|---|
| Current price (numeric) | "current_price":\v |
| Product name (text) | "name":"\a |
| Shop name (text) | "shop":"\a |
| Currency (text) | "currency":"\a |
Pattern syntax reference:
\v — extracts a numeric value at this position\a — extracts a text value (reads until next ")\i...\i — skip/ignore text between markers (use to navigate to the right position in the JSON)Note: Tip: Loxone Config has a built-in pattern tester. When entering the Command Recognition pattern, click the > button on the right side of the input field. The Edit Command Recognition dialog opens — enter the Pricewatcha product URL, click "Daten abfragen", and Loxone Config fetches the live response and highlights the matched value in green. This lets you verify each pattern before saving.
Step 4 — Connect to your program
Each Befehl output is a numeric or text value you can use directly in Loxone programs:
current_price to a Threshold Switch (Schalter mit Schwellwert) → fires when price drops below your targetNote: No API key required — the product detail endpoint is public. You only need an API key for alerts and webhooks (Path B).
Loxone cannot directly receive Pricewatcha webhooks because Pricewatcha requires a publicly reachable HTTPS endpoint, and the Miniserver is typically behind NAT without a public IP. This applies to both Gen1 and Gen2.
LoxBerry acts as the middleware: it receives the Pricewatcha webhook and forwards the data to the Miniserver via MQTT.
The receiver URL depends on your LoxBerry version:
| LoxBerry version | Receiver URL |
|---|---|
| 3.0+ (MQTT built-in, no plugin needed) | http://YOUR_LOXBERRY_IP/system/tools/mqtt/receive.php |
| 2.x (install MQTT Gateway Plugin first) | http://YOUR_LOXBERRY_IP/plugins/mqttgateway/receive.php |
Step 1 — Create a Pricewatcha API key
Create an API key on this page (requires login). Alerts and webhooks require authentication.
Step 2 — Create a Pricewatcha price alert pointing to LoxBerry
Step 3 — Configure LoxBerry MQTT Subscriptions
In the LoxBerry MQTT configuration, subscribe to topic rcvr/#. The incoming JSON payload is parsed automatically. Map the relevant fields (e.g. event_type, price/new_price) to Loxone Virtual Inputs via MQTT subscriptions.
Step 4 — In Loxone Config
Connect the Virtual Input (triggered by the MQTT subscription) to your notification or automation program.
Warning: Public reachability required: Pricewatcha must reach your LoxBerry webhook URL over the internet. Use Loxone Remote Connect or configure port forwarding on your router. For local testing without internet exposure, use the Pricewatcha test endpoint to trigger a manual delivery:
POST https://pricewatcha.com/api/v1/webhooks/{id}/test
Note: Alternative middleware: ioBroker with its Loxone adapter can also serve as middleware for receiving Pricewatcha webhooks. See the ioBroker documentation for setup details.
Official Python and TypeScript client libraries live in sdks/ on GitHub.
They support the async track → poll → read workflow. Use the OpenAPI schema or plain HTTP from any other language.
Install from the Python SDK on GitHub. Setup: sdks/python/README.md.
Install from the TypeScript SDK on GitHub. Setup: sdks/typescript/README.md.
Generate clients in other languages from the OpenAPI spec or live GET https://pricewatcha.com/api/v1/openapi.json (OpenAPI Generator, Speakeasy, Kiota and similar tools).
All notable changes to the public API contract, SDKs and MCP server in this repository.
Package / release versioning uses 0.1.x. HTTP API paths remain /api/v1.
GET /api/v1/watchlist, GET|POST|DELETE /api/v1/products/{productId}/watch (API key). Watched products are included in the price scheduler (same user_products path as the dashboard).POST /track options (auth required): watch: true enrolls the product for continuous updates; refresh: true forces a re-scrape even when the URL is already in the catalog.watch_product, unwatch_product, list_watchlist, get_watch_status; track accepts watch / refresh.GET /api/v1/search now has its own stacked quotas, separate from generic catalog reads: anonymous ~20 / 60s, ~60 / hour, ~200 / day; authenticated (API key) ~40 / 60s, ~180 / hour, ~1000 / day, keyed per account. Polling the same queries on a short interval returns HTTP 429 with X-RateLimit-Policy search, search_hourly, or search_daily.GET /products/{id} and /price-history keep the per-minute burst and add hourly/daily caps: anonymous ~120 / 60s, ~180 / hour, ~600 / day; authenticated ~240 / 60s, ~540 / hour, ~3000 / day.search_daily / read_daily) counts toward the same IP strike threshold as track_daily. After several distinct UTC days the client is asked to contact info@pricewatcha.com (X-Pricewatcha-Restriction: notice); if there is no reply the IP is blocked. Default restriction scope is all of /api/v1 except health/discovery.GET /api/v1/search?q= uses case-insensitive token AND (all terms must appear; order does not matter) instead of requiring the full query as one contiguous substring. Hyphens, slashes and similar punctuation are normalized to spaces (Darth-Vader ≡ Darth Vader, 1/6 ≡ 1 6). Contiguous phrase matches still rank higher. Minus-prefixed exclude terms are unchanged.notify_on_drop and notify_on_rise on POST/PATCH/GET /api/v1/alerts. Either flag is enough — a numeric threshold is no longer required.create_price_alert, list_price_alerts, get_price_alert, update_price_alert, delete_price_alert (API key required). Same directional flags as the HTTP API.google_product_category_id and google_product_category_name on GET /api/v1/products/{id}, GET /api/v1/search (and MCP get_product / search_products / completed track jobs). Always present in responses (null when unset); search needs no extra query parameter.GET /api/v1/search?q= accepts minus-prefixed tokens (e.g. iPhone 15 -cover -hülle) to drop products whose name, shop or URL contains those terms. Case-insensitive. limit applies after exclusion.X-Pricewatcha-Restriction: notice), then a block (403 access_restricted). Contact info@pricewatcha.com.queued/processing jobs older than the scrape timeout are failed automatically (startup + POST /track), so a deploy or hung worker cannot block a client forever.POST /track for a URL that already has an in-flight job for that client returns the existing job_id instead of HTTP 429.CF-Connecting-IP (then True-Client-IP, then X-Forwarded-For) so Cloudflare edge IPs are not separate buckets.POST /track receives higher per-account limits (~4 concurrent / 20 per minute / 120 per hour / 400 per day). The account is stored on the track job even without a callback.Initial release of the public API, official SDKs and remote MCP server.
GET /api/v1/healthGET /api/v1: discovery documentPOST /api/v1/track: async ingestion (200, bounded long-poll ~25s)GET /api/v1/jobs/{jobId}GET /api/v1/products/{productId}GET /api/v1/products/{productId}/price-historyGET /api/v1/search?q=GET /api/v1/openapi.jsondemo_iphone_15_pro, demo_galaxy_s24POST /api/keys, GET /api/keys, DELETE /api/keys/{id} (pwk_live_...)POST/GET/PATCH/DELETE /api/v1/alerts (API key required)/api/v1/webhooks, test delivery, delivery logs (API key required)https://mcp.pricewatcha.com (no API key for MCP connection)Examples: examples/
MCP: mcp/README.md · mcp-server/
Apache License 2.0: see LICENSE.
Report vulnerabilities responsibly: SECURITY.md.
Questions about the API, integration issues or unexpected behaviour: support@pricewatcha.com.
If your IP received HTTP 403 with access_restricted, or a notice header (X-Pricewatcha-Restriction: notice), write to info@pricewatcha.com. See Abuse and IP restrictions.
For bugs or documentation fixes in this repository, open a GitHub issue.