Understand and Automate Amazon.

Work with your AI agent to see what's happening and automate what happens next.

Works across 20+ Amazon marketplaces

US DE GB JP IN FR IT
Bring your own agent

Your agent, plugged into Amazon.

Integrate your favorite AI agent with your Amazon selling, vendor, and ads accounts. It queries your data and writes automations freely. Nothing templated, nothing menu-bound. Pulsify does the plumbing: real-time events in, sandboxed code out. And if you want to write the code yourself, it's right there.
// Pause ads when a SKU runs out of stock; resume on restock.
function handle(event, context) {
  const listing = context.listing;
  const available = Number(listing.quantity);

  for (const campaign of listing.campaigns) {
    if (available === 0 && campaign.state === "enabled") {
      campaign.pause();
    } else if (available > 0 && campaign.state === "paused") {
      campaign.resume();
    }
  }

  return context;
}

A decade of Amazon plumbing.

Pulsify is by the maintainers of peddler, the open source Ruby library for Amazon's Selling Partner API. Ruby is the language behind Shopify and Stripe; peddler has carried sellers' API traffic for over a decade.

peddler on GitHub

When code reprices 500 SKUs at 2 a.m., you want to know why.

Pulsify keeps the receipts. Every automation run is logged: what fired it, what it read, what it changed. Open any decision and follow the trail.

Every decision logged.

Each run records its trigger, inputs, and actions. No mystery moves on your account, ever.

Every automation readable.

The code behind each decision is right there. Read it, edit it, or hand it to your agent to explain.

One kill switch.

Something looks wrong? Stop every automation instantly. Investigate calmly, resume when ready.

No black box, full control.

Pulsify hooks into your real-time and historical Amazon data: Buy Box changes, pricing, sales, traffic, ads, inventory. The agent writes code from your description, tests it, and deploys it. Every automation is yours to read, edit, and audit.

Real-time events. No polling.

Amazon pushes notifications the moment something changes. Buy Box shifts, orders arrive, inventory updates. Your code runs within seconds via EventBridge and SQS.

JavaScript you can read.

Every automation is a JavaScript function. The agent writes it from your description. You review it, edit it, test it against real data, or write it from scratch.

Rich context, built in.

Your code has access to the full picture. Current prices, historical sales, ad metrics, the competing offers on your listings, FBA fees. All via typed APIs. No raw HTTP calls.

Agentic, not templated.

The assistant doesn't pick from a menu of approved strategies. It interprets your intent, writes code to match, and explains its reasoning. You approve before anything runs.

25+ event types.

Buy Box changes, pricing updates, order notifications, inventory alerts, catalog updates, B2B pricing, fulfillment events. Sellers and vendors.

You own the code.

Guardrails included: price floors, ceilings, and validation run before every action. And the code itself is yours, readable and editable, on your account.

Questions & answers