Amazon vs Perplexity: The AI Agents War That Defines the Future of E-commerce
Hello HaWkers, in November 2025, Amazon filed a lawsuit against Perplexity AI, demanding that the startup block its AI agent "Comet" from making purchases on Amazon's website.
This is not just another corporate dispute - it's a battle that could define the future of how we shop online, the relationship between platforms and autonomous agents, and who controls the consumer experience in the AI era.
What is Perplexity Comet
Before understanding the dispute, we need to know what's at stake:
Autonomous AI Agents
Comet is Perplexity's web browsing agent, launched as part of its evolution from search to action:
What Comet Does:
- Browses websites on behalf of the user
- Compares prices automatically
- Completes forms and checkout
- Makes purchases based on user preferences
- Operates 24/7 seeking best deals
How It Works:
- User says: "Buy me a laptop with these specs up to $1500"
- Comet searches multiple sites (Amazon, Best Buy, etc.)
- Compares prices, reviews, availability
- Finds best option
- Completes purchase automatically
- Notifies user about transaction
Benefits For Users:
- Time savings (hours → seconds)
- Better prices (compares everything automatically)
- No decision fatigue
- Optimized shopping 24/7
- Transparency in comparisons
🔥 Context: We're witnessing the evolution from "search" to "action" - AI doesn't just find information, but acts on your behalf. This changes everything in e-commerce.
Perplexity's Vision
Aravind Srinivas, Perplexity's CEO, defends Comet with strong arguments:
Perplexity's Position:
- Comet acts on behalf of real users
- Same permissions the user would have
- Democratizes access to best shopping experience
- Breaks "walled gardens" that trap users
- Represents the inevitable future of commerce
Response to Amazon:
In a post titled "Bullying is Not Innovation", Perplexity argues:
- Amazon is trying to stifle innovation
- Protectionism to defend its monopoly
- Anti-competitive behavior
- Harms consumers
Amazon's Accusation
Amazon is not just annoyed - it's suing. Its arguments reveal deep concerns:
Terms of Service Violation
Amazon's Allegations:
1. Lack of Transparency:
- Comet doesn't identify itself as an AI agent
- Disguises itself as Chrome browser
- Omits that it's acting autonomously
- Violates identification obligation
2. Computer Fraud:
- Amazon alleges "computer fraud" under CFAA (Computer Fraud and Abuse Act)
- Comet accesses systems without proper authorization
- Bypasses security measures and rate limiting
- Behavior similar to malicious bots
3. Degraded Experience:
- Harms legitimate users
- Unfairly consumes server resources
- Interferes with analytics and personalization
- Compromises fraud detection
History of Warnings
Amazon didn't sue first - it tried to resolve before:
Timeline of Warnings:
- First Warnings (2024): Amazon notifies Perplexity about violations
- August 2025: Comet returns to operation, now disguised
- Multiple Warnings: Amazon documents repeated violations
- November 2025: Lawsuit as last resort
Evidence Presented:
- Logs showing Comet impersonating Chrome
- False user-agents detected
- Abnormal access patterns
- Documentation of ignored prior warnings
Amazon's Conflict of Interest
The situation gets more interesting when we consider the context:
Amazon Has Its Own Agent
In April 2025, Amazon demonstrated "Buy for Me", its own AI shopping agent:
Buy for Me:
- Works within Amazon ecosystem
- Recommends Amazon products
- Integrated with Prime and services
- No comparison with competitors
The Paradox:
- Amazon wants you to use AI agent... theirs
- But blocks third-party agents
- Total control of experience and data
- Guaranteed monetization
Broad Agent Blocking
It's not just Perplexity being blocked:
Other Blocked Agents (July 2025):
- Google Shopping Agent
- OpenAI Shopping Assistant
- Anthropic Claude Shopping
- Several others in development
Blocking Method:
- Website code update
- Agent pattern detection
- Aggressive rate limiting
- CAPTCHAs for suspicious behavior
Clear Message:
"Use our agent or shop manually. Third-party agents are not welcome."
Implications For E-commerce's Future
This dispute is much bigger than two companies fighting:
Three Possible Futures
Scenario 1: Amazon Wins - Walled Gardens
If Amazon prevails in court:
- Each platform will have its own agent
- Users trapped in closed ecosystems
- Impossible to compare prices easily
- Monopolies strengthen
For Consumers:
- Worse shopping experience
- Higher prices
- Less competition
- Back to status quo
For Developers:
- Impossible to build independent agents
- Need partnerships with each platform
- Innovation stifled
- Big companies dominate
Scenario 2: Perplexity Wins - Open Web for Agents
If Perplexity prevails:
- Agents can browse freely
- Real price comparison
- Merit-based competition
- Innovation flourishes
For Consumers:
- Better experience
- Better prices
- More transparency
- Real power of choice
For Developers:
- Open market for agents
- Feature-based competition
- Rapid innovation
- Viable startups
Scenario 3: Middle Ground - Regulation
Hybrid solution with clear rules:
- Agents must identify themselves
- Platforms cannot block arbitrarily
- Industry standards emerge
- Clear legal framework
Fundamental Legal Questions
The case raises questions that go beyond e-commerce:
Unanswered Questions:
1. Do Agents Have the Same Rights as Humans?
- If I can access Amazon, can my agent?
- Where does my authority end and "fraud" begin?
- Can ToS limit how I access a site?
2. What is "Proper Identification"?
- Does agent need to say "I'm a bot"?
- Does user-agent need to be specific?
- Who sets the standard?
3. Ownership of User Experience:
- Does Amazon own the "shopping experience"?
- Can I delegate to an agent?
- Are intermediaries allowed?
4. Anti-competitiveness:
- Is blocking agents anti-competitive?
- Is favoring own agent legal?
- Should regulators intervene?
Historical Parallels
It's not the first time we've seen this dynamic:
APIs and Scraping
Relevant History:
LinkedIn vs hiQ (2022):
- hiQ scraped public LinkedIn profiles
- LinkedIn tried to block
- US Supreme Court analyzed
- Decision: public data can be scraped
Similarities with Amazon vs Perplexity:
- Data access vs ToS violation
- Public interest vs platform rights
- Innovation vs control
Google vs Scraping:
- Google started by scraping
- Now tries to prevent scraping of its results
- Irony not lost on anyone
Browsers and Open Web
Browser Wars (1990s-2000s):
- Microsoft tried to control how we access web
- Antitrust forced openness
- Open standards won
Lessons:
- Attempts to control access usually fail
- Regulators favor competition
- Innovation comes from openness
Impact For Developers
As a developer, you're directly affected:
If Amazon Wins
Technical Limitations:
// Your AI agent
async function comparePrices(product) {
// ❌ Blocked by Amazon
const amazonPrice = await fetchAmazon(product);
// ❌ Blocked by Walmart
const walmartPrice = await fetchWalmart(product);
// Only works with official APIs (if they exist)
// Paying for access
// Artificial limitations
}Consequences:
- Impossible to build comparison tools
- Users trapped in silos
- Innovation limited to big players
- Startups unviable
If Perplexity Wins
Open Possibilities:
// Your agent can do virtually anything
async function shoppingAgent(preferences) {
// ✅ Compares all stores
const options = await compareAllStores(preferences);
// ✅ Considers reviews from multiple sources
const withReviews = await enrichWithReviews(options);
// ✅ Optimizes for price, time, sustainability
const bestOption = optimize(withReviews, preferences);
// ✅ Completes purchase automatically
return await finalizePurchase(bestOption);
}Opportunities:
- Open market for agents
- Rapid innovation
- Healthy competition
- Users benefit
Ethical Considerations
Regardless of outcome, developers need to think about:
Responsibilities:
- Transparency about what your agent does
- Respect robots.txt and rate limits
- Don't harm legitimate services
- Protect user data
Best Practices For Agents:
// Clear identification
const userAgent = 'MyAIAgent/1.0 (contact@example.com)';
// Respect rate limits
await rateLimiter.wait();
// Be transparent
await notifyUser('Shopping on your behalf...');
// Auditable logs
logger.log('Action taken:', action, 'reason:', reason);Other Players Watching
The entire industry is paying attention:
Company Positioning
Google:
- Is developing Shopping Agent
- Also being blocked by Amazon
- Interest in open web (historically)
OpenAI:
- ChatGPT can browse web
- Future shopping capabilities
- Awaits legal clarity
Anthropic:
- Claude can interact with websites
- Cautious position
- Awaiting precedent
Meta:
- Less active in shopping agents
- But watching closely
- Implications for future AI features
Regulators
Antitrust authorities are paying attention:
FTC (Federal Trade Commission):
- Investigating anti-competitive practices in tech
- Interest in AI markets
- Possible intervention
EU:
- Digital Markets Act may be relevant
- Focus on gatekeepers
- Amazon already under scrutiny
Other Countries:
- Brazil: CADE watching
- UK: CMA attentive
- Multiple jurisdictions involved
What to Expect
Likely Timeline
Short Term (2025-2026):
- Case advances in courts
- Possibly out-of-court settlements
- Injunctions possible
Medium Term (2026-2027):
- First instance decision
- Appeals likely
- Other similar cases emerge
Long Term (2027+):
- Legal precedent established
- Specific regulation possible
- New balance emerges
Most Likely Scenario
Based on history and trends:
Prediction:
- Amazon and Perplexity reach settlement
- "Identified agents" framework emerges
- Industry standards are established
- Regulators create clear rules
- Web remains relatively open, but with guidelines
Result:
- Agents must clearly identify themselves
- Platforms cannot block arbitrarily
- Reasonable rate limits are acceptable
- Competition remains possible
Conclusion
The battle between Amazon and Perplexity is not about technology - it's about control. Who controls how we access information and shop in the AI era? The platforms that built the marketplaces, or users through their agents?
This dispute will set crucial precedents. If Amazon wins completely, we'll see a future of walled gardens where each platform has its proprietary agent. If Perplexity wins completely, an era of free agents browsing and comparing everything. Reality will probably be somewhere in the middle, but today's battle determines where that middle ground settles.
For developers, the message is clear: build responsibly, but build. The future will have AI agents shopping - the question is whether they'll be open and competitive, or controlled by monopolies. And that answer is being decided now, in courts and public opinion.
If you want to understand more about how AI is transforming other industries, I recommend checking out another article: TypeScript Becomes the Most Used Language on GitHub where you'll discover how AI tools are influencing even the languages we use.

