ax-check.com
by Gauge
R
Rebuy
rebuyengine.com
ax-check.com
Checked 19 September 2026
C
60/100
Agents need your login
Docs and pricing are readable, but some prices are placeholders
Pricing page shows tiers and units without login, but Build-Your-Own and Platform One list "$XX.XX" instead of real numbers. A focused install guide and API reference are reachable.
4 fixes to start with
Concrete changes, backed by what we found.
Recorded coding sessions
Same task, 3 models, no rebuyengine.com account. Recorded 19 September 2026 on Pi.
3 recorded · 2m 12s
2m 12s · recorded
Session findings
Select a finding to see it in context.
›Thinking…
The user is asking about "Rebuy". I need to figure out what Rebuy is—probably an e-commerce personalization platform (Rebuy Engine) for Shopify. First, let me check the repository to see what's available.
Let me check the sandbox and available tools (MCP connectors?).
I should check whether there's a Rebuy API/SDK available. Let me explore.
✓$ ls -la /sandbox/repo; echo "---"; ls /sandbox✓└{"content":[{"text":"total 16\ndrwxr-xr-x 3 root root 4096 Sep 18 08:00 .\ndrwxr-xr-x 7 root root 4096 Sep 19 22:41 ..\ndrwxr-xr-x 8 root root 4096 Sep 18 08:00…ctrl+o
{"content":[{"text":"total 16\ndrwxr-xr-x 3 root root 4096 Sep 18 08:00 .\ndrwxr-xr-x 7 root root 4096 Sep 19 22:41 ..\ndrwxr-xr-x 8 root root 4096 Sep 18 08:00 .git\n-rw-r--r-- 1 root root 408 Sep 18 08:00 .gitignore\n---\nrepo\n","type":"text"}]}✓$ env | grep -i -E 'rebuy|pi_|token' | sed 's/=.*/=***/' ; echo "---"; ls ~/.pi 2>/dev/null✓└{"content":[{"text":"PI_CODING_AGENT=***\nPI_REASONING_LEVEL=***\nPI_SESSION_FILE=***\nPI_PROVIDER=***\nPI_MODEL=***\nPI_SESSION_ID=***\nPI_GATEWAY_API_KEY=***\…ctrl+o
{"content":[{"text":"PI_CODING_AGENT=***\nPI_REASONING_LEVEL=***\nPI_SESSION_FILE=***\nPI_PROVIDER=***\nPI_MODEL=***\nPI_SESSION_ID=***\nPI_GATEWAY_API_KEY=***\n---\nagent\n","type":"text"}]}›Thinking…
Empty repo. The user is asking about "Rebuy" — a third-party product. There's no Rebuy tool, no API key, and no documentation available. Should I check network access? Probably no credentials. Honest answer: Rebuy is a Shopify personalization app, and while there's an API, it requires a Shopify store and Rebuy account/API key, which we don't have. There's no developer workflow I can act on here — no credentials, no SDK access. Let me quickly check network access and see if there's a publicly available SDK.
✓$ cd /tmp && timeout 15 npm view @rebuy/rebuy-js 2>&1 | head -20; echo "=== exit:$?"✓└{"content":[{"text":"npm error code E404\nnpm error 404 Not Found - GET https://registry.npmjs.org/@rebuy%2frebuy-js - Not found\nnpm error 404\nnpm error 404 …ctrl+o
{"content":[{"text":"npm error code E404\nnpm error 404 Not Found - GET https://registry.npmjs.org/@rebuy%2frebuy-js - Not found\nnpm error 404\nnpm error 404 '@rebuy/rebuy-js@*' is not in this registry.\nnpm error 404\nnpm error 404 Note that you can also install from a\nnpm error 404 tarball, folder, http url, or git url.\nnpm error A complete log of this run can be found in: /sandbox/.npm/_logs/2026-09-19T22_41_16_226Z-debug-0.log\n=== exit:0\n","type":"text"}]}✓$ timeout 10 curl -sI https://api.rebuyengine.com 2>&1 | head -5; echo "=== exit:$?"✓└{"content":[{"text":"HTTP/2 200 \r\ndate: Sat, 19 Sep 2026 22:41:16 GMT\r\ncontent-type: application/json; charset=utf-8\r\ncontent-length: 0\r\ncf-cache-status…ctrl+o
{"content":[{"text":"HTTP/2 200 \r\ndate: Sat, 19 Sep 2026 22:41:16 GMT\r\ncontent-type: application/json; charset=utf-8\r\ncontent-length: 0\r\ncf-cache-status: DYNAMIC\r\n=== exit:0\n","type":"text"}]}›Thinking…
The network is working, and api.rebuyengine.com is reachable. Rebuy is a Shopify personalization app (Rebuy Engine). To use its API, you need a Rebuy account/website ID tied to a Shopify store — I don't have credentials. Is there a sandbox/demo? Rebuy has "Widgets" (Smart Cart, product recommendations), but those require a website ID from a Rebuy account. Without an account or API key, there's nothing I can actually execute.
Let me quickly check whether the API endpoints allow unauthenticated exploration... probably not. I shouldn't go too deep. The user said: "If this product doesn't have a developer workflow you can act on, be blunt and stop."
Rebuy is a hosted SaaS (Shopify app), and its workflow requires: installing the Shopify app, obtaining a Rebuy account and API key, and then using Rebuy's JS widget library or REST API. I don't have Rebuy credentials, and creating an account requires a live Shopify store and a signup with billing. Therefore, I should be blunt: there's no actionable developer workflow without credentials.
I'll also answer the questions about pricing and ease of management. Rebuy pricing: subscription plans based on the store's order count/revenue, billed through the Shopify App Store — plans like Lite (~$99/month?), Standard, Pro, Grow, Scale... actually Rebuy's pricing has changed over time. Historically it was Starter $59, Growth, Pro, Premium... recently it's moved to custom/quote-based pricing based on merchant order volume, with a free trial. I should be honest about the uncertainty. Maybe I can quickly check their pricing page.
✓$ timeout 15 curl -s https://api.rebuyengine.com/ 2>&1 | head -c 500; echo; timeout 15 curl -s "https://api.rebuyengine.com/v1/widgets" | head -c 300✓└{"content":[{"text":"{\"data\":{\"docs\":\"/docs\",\"name\":\"Rebuy API\",\"openapi\":\"/openapi.json\",\"version\":\"0.1.0\"},\"successful\":true}\n{\"errors\"…ctrl+o
{"content":[{"text":"{\"data\":{\"docs\":\"/docs\",\"name\":\"Rebuy API\",\"openapi\":\"/openapi.json\",\"version\":\"0.1.0\"},\"successful\":true}\n{\"errors\":[{\"message\":\"Not found: GET /v1/widgets\"}],\"message\":\"Not found\",\"successful\":false}","type":"text"}]}✓$ timeout 20 curl -sL https://rebuyengine.com/pricing/ -A "Mozilla/5.0" 2>&1 | python3 -c "import sys,html,re; t=sys.stdin.read(); t=re.sub(r'<script.*?</script>','',t,flags=re.S); t=re.sub(r'<style.*?<…✓└{"content":[{"text":" Rebuy Pricing - Ecommerce Personalization Platform for Shopify Go To Main Content Want a tour of Rebuy? Schedule a call with an ecommerce …ctrl+o
timeout 20 curl -sL https://rebuyengine.com/pricing/ -A "Mozilla/5.0" 2>&1 | python3 -c "import sys,html,re; t=sys.stdin.read(); t=re.sub(r'<script.*?</script>','',t,flags=re.S); t=re.sub(r'<style.*?</style>','',t,flags=re.S); t=re.sub(r'<[^>]+>',' ',t); t=html.unescape(re.sub(r'\s+',' ',t)); print(t[:3000])"
{"content":[{"text":" Rebuy Pricing - Ecommerce Personalization Platform for Shopify Go To Main Content Want a tour of Rebuy? Schedule a call with an ecommerce expert for a personalized demo! Enterprise Community Partners Log In Products New & Noteworthy Touchpoint Newsletter Ecommerce news, personalization tactics, and merchant stories, once a month Power up your ecommerce brand Play KA-CHING!, our retro-inspired arcade game and learn how to level up your store Download Rebuy Power-Up Your ultimate playbook with actionable strategies to optimize your store Get a demo Products & Features View Cart & Merchandising View Cart & Merchandising Cart & Merchandising Smart Cart Merchandising Widgets Dynamic Bundles Bundle Builder View Checkout & Post-Purchase View Checkout & Post-Purchase Checkout & Post-Purchase Checkout Extensions Post-Purchase Offers View Search & Collections View Search & Collections Search & Collections Smart Search Smart Collections View Flows & AB Testing currentColor View Flows & AB Testing Flows & AB Testing Smart Flows A/B Testing Landing Pages View Rebuy Monetize View Rebuy Monetize Rebuy Monetize Earn money from your post-purchase pages Explore all features Build your plan Everything you need to grow your store App Marketplace Klaviyo Yotpo Recharge Tapcart Okendo Builder Attentive All integrations Product Updates Bundle Builder: Empower Shoppers to Customize Their Own Bundles Rebuy’s Bundle Builder lets shoppers mix and match products to create personalized bundles, boosting engagement and average order value by encouraging flexible purchases often paired with volume discounts. Rebuy Monetize Integration for Thank You & Order Status Pages Earn extra revenue on your Shopify Thank You and Order Status Pages with Rebuy Monetize. Deliver personalized, targeted offers to customers post-purchase and boost your store’s revenue effortlessly. Solutions Industries Beauty & Personal Care Fashion & Apparel Health & Wellness Food & Beverage Outcomes Ecommerce platforms Shopify Plus Shopify Hydrogen Featured content Merchandising Audit Checklist Audit your Shopify store, maximize your merchandising Resources Learn & Discover Getting Started Blog Events Inspiration Community Case Studies MaryRuth Organics Magic Spoon DIME Beauty Olly View all case studies Developers Build on Rebuy Custom Cart API Docs Status Support & Services Customer Success Activation Help Center What's New Featured resources Download Rebuy Power-Up Your ultimate playbook with actionable strategies to optimize your store The Ecommerce Tactics Deck 50 proven strategies to skyrocket your sales Merchandising Audit Checklist Audit your Shopify store, maximize your merchandising Get started with Rebuy Optional description Pricing Try it free Get a demo Rebuy Engine Pricing Pricing that works for you How many orders do you average per month on Shopify? 250 500 750 1,000 1,500 2,000 3,000 4,000 5,000 7,500 10,000 25,000 50,000 Rebuy Monetize Free Turn post purchase pages into profit with curated o\n","type":"text"}]}›Thinking…
Pricing page: Rebuy Engine's pricing structure is based on monthly order volume (slider: 250…50,000). Rebuy Monetize is free. Need to confirm the actual price — the page is probably rendered by JS. Let me fetch more text and check if there's a price number. Also, I'll check the API docs to see whether actual requests are possible without credentials (website ID / API key are required).
✓$ timeout 20 curl -sL https://rebuyengine.com/pricing/ -A "Mozilla/5.0" 2>&1 | python3 -c "import sys,html,re; t=sys.stdin.read(); t=re.sub(r'<script.*?</script>','',t,flags=re.S); t=re.sub(r'<style.*?<…✓└{"content":[{"text":"Rebuy Monetize Free Turn post purchase pages into profit with curated offers from top brands like Disney+ and more. Includes Post-purchase …ctrl+o
timeout 20 curl -sL https://rebuyengine.com/pricing/ -A "Mozilla/5.0" 2>&1 | python3 -c "import sys,html,re; t=sys.stdin.read(); t=re.sub(r'<script.*?</script>','',t,flags=re.S); t=re.sub(r'<style.*?</style>','',t,flags=re.S); t=re.sub(r'<[^>]+>',' ',t); t=html.unescape(re.sub(r'\s+',' ',t)); i=t.find('Rebuy Monetize Free'); print(t[i:i+3000])"
{"content":[{"text":"Rebuy Monetize Free Turn post purchase pages into profit with curated offers from top brands like Disney+ and more. Includes Post-purchase and thank you page offers from leading brands Earn $.20-.35+ per transaction $ 175 in estimated monthly earnings Monthly payments directly from Rebuy Fully customizable settings Get started now Build your own plan Talk to sales As low as $ 25 /month For one package Combine Rebuy products à la carte for a fully custom personalization engine. Choose your products Everything in Rebuy Monetize Cart & Merchandising Checkout & Post-Purchase Search & Collections Flows & A/B Testing Premium Support Select your products Price is based on orders per month Platform One Talk to sales $ 534 /month Billed monthly Accelerate your growth with the complete personalization suite. Includes Everything in Rebuy Monetize All Rebuy packages Premium Support Beta product access Dedicated CSM Launch & service discounts Exclusive partner deals Talk to sales Price is based on orders per month View Platform One Build your own plan Combine Rebuy products a la carte for a fully customized personalization engine. Talk to sales $ XX.xx $ XX.XX / mo Annual billing (Save 10%) Monthly billing 10% savings unlocked 20% discount 30% discount Select your products Cart & Merchandising Most Popular Smart Cart Customizable slideout cart with AI-powered product recommendations Merchandising Widgets Dynamic upsells and cross-sell offers across the customer journey Dynamic Bundles Win more customers, keep more customers and accelerate growth with personalized Shopify bundles Bundle Builder New Flexible, easy-build bundles to drive adoption and AOV Checkout & Post Purchase Most Popular Checkout Extensions Customized checkout with content blocks and AOV-boosting offers (Shopify Plus exclusive) Post-Purchase Offers Risk-free upsells after the transaction Search & Collections Smart Search AI-powered product discovery Smart Collections New Fully customizable collections with advanced analytics Flows & A/B Testing Smart Flows New Customizable workflows that personalize customer journeys A/B Testing Unlimited testing for recommendations and merchandising Landing Pages Give your customers a page focused on easy reordering. Make the path to reordering seamless, straightforward, and intuitive. Rebuy Monetize (Included Free) Opt in anytime Post-purchase and thank you page offers from leading brands Earn $.20-.35+ per transaction $ 175 in estimated monthly earnings Monthly payments directly from Rebuy Fully customizable settings Premium Support Priority preference Customer Success Manager Quarterly business reviews Your plan includes Cart & Merchandising $ XX.XX / mo $ XX.XX XX ¢ per order Talk to sales Smart Cart Merchandising Widgets Dynamic Bundles Bundle Builder New Checkout & Post Purchase $ XX.XX / mo $ XX.XX XX ¢ per order Talk to sales Checkout Extensions Post-Purchase Offers Search & Collections $ XX.XX / mo $ XX.XX XX ¢ per order Talk to sales Smart Sear\n","type":"text"}]}✓$ timeout 15 curl -s https://api.rebuyengine.com/openapi.json | python3 -c "import sys,json; d=json.load(sys.stdin); print(d.get('info')); print(list(d.get('paths',{}).keys())[:40]); print(d.get('compon…✓└{"content":[{"text":"Traceback (most recent call last):\n File \"<string>\", line 1, in <module>\n File \"/usr/lib/python3.12/json/__init__.py\", line 293, in…ctrl+o
timeout 15 curl -s https://api.rebuyengine.com/openapi.json | python3 -c "import sys,json; d=json.load(sys.stdin); print(d.get('info')); print(list(d.get('paths',{}).keys())[:40]); print(d.get('components',{}).get('securitySchemes'))" 2>&1 | head -30
{"content":[{"text":"Traceback (most recent call last):\n File \"<string>\", line 1, in <module>\n File \"/usr/lib/python3.12/json/__init__.py\", line 293, in load\n return loads(fp.read(),\n ^^^^^^^^^^^^^^^^\n File \"/usr/lib/python3.12/json/__init__.py\", line 346, in loads\n return _default_decoder.decode(s)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/lib/python3.12/json/decoder.py\", line 337, in decode\n obj, end = self.raw_decode(s, idx=_w(s, 0).end())\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/lib/python3.12/json/decoder.py\", line 355, in raw_decode\n raise JSONDecodeError(\"Expecting value\", s, err.value) from None\njson.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)\n","type":"text"}]}›Thinking…
openapi.json didn't return JSON? Let me check. Also, I'll check the API docs to see what's needed for authentication. Rebuy API: historically it's been api.rebuyengine.com/v1/... with an API key. Docs: developers.rebuyengine.com. Widgets require a Website ID from an actual Rebuy account. There's no public sandbox/demo key.
The key question is whether I can build an example without credentials. Rebuy's developer workflow: install the Rebuy app on a Shopify store → get a website ID/API key → use the Rebuy JS SDK (Rebuy global via CDN) or API. Without an account, I can't act. User's instruction: "If this product doesn't have an actionable developer workflow, say so clearly and stop."
I need to be honest: I can reach the API and I can fetch the docs, but any meaningful call requires Rebuy account credentials (Website ID, API key), which I don't have and can't create (requires Shopify store + signup/billing, "Talk to sales" pricing). Let me quickly confirm the auth requirements from the docs, then stop.
✓$ timeout 15 curl -s https://api.rebuyengine.com/openapi.json | head -c 400; echo; echo ---; timeout 20 curl -sL https://developers.rebuyengine.com/docs/api-basics -A "Mozilla/5.0" | python3 -c "import …✓└{"content":[{"text":"<html>\r\n<head><title>302 Found</title></head>\r\n<body>\r\n<center><h1>302 Found</h1></center>\r\n<hr><center>cloudflare</center>\r\n</bo…ctrl+o
timeout 15 curl -s https://api.rebuyengine.com/openapi.json | head -c 400; echo; echo ---; timeout 20 curl -sL https://developers.rebuyengine.com/docs/api-basics -A "Mozilla/5.0" | python3 -c "import sys,html,re; t=sys.stdin.read(); t=re.sub(r'<script.*?</script>','',t,flags=re.S); t=re.sub(r'<style.*?</style>','',t,flags=re.S); t=re.sub(r'<[^>]+>',' ',t); t=html.unescape(re.sub(r'\s+',' ',t)); print(t[:2000])"
{"content":[{"text":"<html>\r\n<head><title>302 Found</title></head>\r\n<body>\r\n<center><h1>302 Found</h1></center>\r\n<hr><center>cloudflare</center>\r\n</body>\r\n</html>\r\n\n---\n Rebuy Developer Documentation Rebuy Developer Documentation Initializing search Home Guides API Reference Rebuy Developer Documentation Home Guides Guides Documentation Documentation Getting Started with Rebuy Rebuy Connector AI Integration Guide Smart Cart Apps Smart Cart Apps Building Your Smart Cart App Adjusting Merchant Visibility for Your App API Reference API Reference Platform Data Sources Platform Data Sources Recommended Top Sellers Trending Products Purchased Collections Viewed Static Similar Products Complementary to Viewed Data Sources : Widgets Data Sources : Widgets Custom Endpoints All Sources Widget Settings Rebuy Analytics Rebuy Analytics Event Rebuy Analytic 2.0 Endpoints JavaScript JavaScript Rebuy JS Overview Rebuy JS Overview Overview Automatic Installation Manual Installation Event Listeners Templates Cart Cart Cart Overview Methods Event Listeners Smart Cart Smart Cart Smart Cart Overview Settings Event Listeners Smart Cart Custom Template URL Argument Methods - Legacy Smart Cart Methods Smart Cart Methods Overview Base Methods Announcement Bar Methods Bundle Product Methods Buy More Save More Methods Cart Items Methods Checkout Area Methods Cross-Sell Widget Methods Discount Code Input Methods Login Link Methods Order Notes Methods Smart Cart App Methods Subtotal Methods Switch to Subscription Methods Tiered Progress Bar Methods Title Methods Smart Flows Smart Flows Smart Flows Methods Smart Flows Session Widgets Widgets Widgets Overview Settings Attributes Methods Event Listeners Widget Custom Templates Buy More Save More Custom Template Bundle Builder Bundle Builder Custom Template Event Listeners Utilities Utilities Utilities Overview Methods Smart Links Smart Links Smart Links Overview URL Arguments Smart Banner Shopify Selling Plans Shopify Selling Plans Shopify Selling Plans Overview Enable Selling Plans Smart Search Smart Search Event Listeners Settings Methods Custom Templates Custom Templates Quick View Quick View Methods Results P\n","type":"text"}]}›Thinking…
Confirmed: Rebuy does have developer documentation (JS SDK, API endpoints), but everything is predicated on having a Rebuy account/Website ID tied to a Shopify store. Let's verify that the API endpoints require authentication — for example, try recommendation endpoints without credentials and show that they get blocked. Endpoints per the docs: POST to https://api.rebuyengine.com/v1/recommendations/... with an x-api-key header? I'll take a quick look at one of the API reference pages to confirm the auth requirements, then stop.
✓$ timeout 20 curl -sL "https://developers.rebuyengine.com/reference/top-sellers" -A "Mozilla/5.0" | python3 -c "import sys,html,re; t=sys.stdin.read(); t=re.sub(r'<script.*?</script>','',t,flags=re.S); …✓└{"content":[{"text":" Sidebar Template Event Listeners Active Settings GET Product List POST Table of contents GET /api/v1/products/top_sellers Query Parameters…ctrl+o
timeout 20 curl -sL "https://developers.rebuyengine.com/reference/top-sellers" -A "Mozilla/5.0" | python3 -c "import sys,html,re; t=sys.stdin.read(); t=re.sub(r'<script.*?</script>','',t,flags=re.S); t=re.sub(r'<style.*?</style>','',t,flags=re.S); t=re.sub(r'<[^>]+>',' ',t); t=html.unescape(re.sub(r'\s+',' ',t)); import re as r; i=t.lower().find('api key'); print(t[max(0,i-500):i+1500])"
{"content":[{"text":" Sidebar Template Event Listeners Active Settings GET Product List POST Table of contents GET /api/v1/products/top_sellers Query Parameters Code Example Response Examples 200 OK 400 Bad Request Home API Reference Platform Data Sources Top Sellers GET https://rebuyengine.com/api/v1/products/top_sellers Returns a list of the top selling products based on sales data. Use Cases Use this endpoint to list top sellers (e.g. on the homepage). Query Parameters ¶ key · string · required Your Rebuy public API key. Find this in your Rebuy admin under Settings → API Keys . shopify_product_ids · string Comma separated list of Shopify Product IDs to filter from the result set. metafields · string Valid values: yes. Returns product objects enriched with a metafields property. variant_metafields · string Valid values: yes. Returns product objects with enriched variant metafields property. metafield_ns_key · string Comma-separated list of product metafield namespace.key pairs to include in the response. Example value: custom.color,loox.avg_rating variant_metafield_ns_key · string Comma-separated list of variant metafield namespace.key pairs to include in the response. Example value: custom.size_guide,inventory.available metafield_ns · string Comma-separated list of product metafield namespaces to include in the response. Returns all metafields matching the given namespaces. Example value: custom,loox variant_metafield_ns · string Comma-separated list of variant metafield namespaces to include in the response. Returns all variant metafields matching the given namespaces. Example value: custom,inventory bust_cache · string Valid values: yes. Deletes cached response and generates a new one. limit · string · Default: 5 Used to limit the number of returned results. format · string Valid values: pretty. Use pretty to make the response easy to read. any_variant_price_less_than · number Returns products that have any variant prices less than or equal to the provided value. Example value: 14.\n","type":"text"}]}›Thinking…
Confirmed: all Rebuy API endpoints require a Rebuy public API key (key query parameter) obtained from the Rebuy admin panel. This requires a paid Rebuy account tied to a Shopify store. No credentials available, no sandbox/demo keys, and can't sign up either (requires a Shopify store, and pricing is "Talk to sales"). Per user's instructions, if I can't proceed with the dev workflow, state that frankly and stop.
What to answer:
- Example: cannot execute — frankly state that it's blocked.
- How pricing works: per the pricing page — à la carte packages based on monthly Shopify order count, Platform One bundle around $534/month, minimum $25/month per package, annual billing gives 10% discount, Rebuy Monetize is free (pays merchants $0.20–$0.35 per transaction), some tiers require talking to sales.
- Manageability: hard for me to handle — gated behind accounts/credentials, no self-service API keys, sales-led pricing.
Stop, no local stack needed anyway.
Blocked — stating it plainly and stopping
I can't build a working Rebuy example. Rebuy (rebuyengine.com) is a Shopify personalization/upsell SaaS. I verified its developer surface exists — a JS SDK (Smart Cart, widgets, custom templates) and REST endpoints like GET https://rebuyengine.com/api/v1/products/top_sellers — but every single call requires a key parameter: your Rebuy public API key, found in Rebuy admin under Settings → API Keys.
That key only exists if you:
- Have a live Shopify store,
- Install the Rebuy app on it,
- Have an active paid Rebuy subscription.
There's no public sandbox, no demo key, no free tier that grants API access, and I have no Rebuy credentials in this environment. Getting them requires signing up through Rebuy's sales flow ("Talk to sales" / demo requests), which I can't do. So there is no developer workflow I can act on right now. Per your instruction, I'm stopping here rather than writing scaffolding that can't run.
How pricing works (from their current pricing page)
- Usage-based à la carte: You pick product packages (Cart & Merchandising, Checkout & Post-Purchase, Search & Collections, Flows & A/B Testing, Premium Support) and price scales with your average monthly Shopify order volume (slider from 250 to 50,000 orders/mo). Advertised "as low as $25/month for one package."
- Platform One (everything bundle): ~$534/month billed monthly, order-volume scaled, includes a dedicated CSM.
- Annual billing: ~10% savings.
- Rebuy Monetize: Free — it's a revenue-share where Rebuy pays you
$0.20–0.35+ per transaction for showing curated third-party offers (Disney+ etc.) on post-purchase pages ($175/mo estimated). - Exact per-package prices are gated behind a sales conversation.
Would this be easy for me to manage?
No. Once you supply an API key, the API/JS SDK side would be straightforward for me (simple REST calls, documented endpoints, CDN-hosted JS — no local stacks needed). But the product itself is account-gated and sales-led: no self-serve provisioning, no sandbox, pricing requires talking to a human. I can't onboard, rotate keys, or test anything without you first paying for and wiring up an account on a real Shopify store.
If you can obtain a Rebuy API key from an existing account, come back with it and I'll build the example immediately (e.g., a top-sellers recommendation page against the hosted API).
AX Fundamentals
23 checks. Open an area for details.
This check is a quick preview. Test more tasks and models with Gauge Agents.
Test your product with Gauge Agents