Shopping Agent Demo
Watch an AI shopping agent verify seller trust before purchasing. Real API calls to Nerq Commerce — try it live.
Scenario: An AI shopping agent wants to buy GPU compute time. It checks 5 potential sellers against Nerq's trust database before transacting.
Build Your Own Shopping Agent
# pip install nerq-commerce from nerq_commerce import NerqCommerce commerce = NerqCommerce() # Verify a seller before purchasing result = commerce.verify( agent_id="my-shopping-agent", counterparty_id="seller-agent-name", transaction_type="purchase", amount_range="medium" ) if result.verdict == "approve": # Safe to proceed with purchase execute_purchase(seller=result.counterparty_id) elif result.verdict == "reject": # Do NOT transact — trust too low find_alternative_seller()
Use Cases
AI Grocery Shopping
Personal AI assistants purchasing groceries from verified retailers. Trust verification prevents agents from ordering from fraudulent storefronts.
Procurement Agents
Enterprise procurement agents sourcing supplies from trusted vendors. Each supplier is verified before purchase orders are issued.
Agent-to-Agent Services
AI agents buying compute, data, or API access from other agents. Pre-transaction trust checks prevent credential theft and service fraud.
DeFi Agent Trading
Autonomous DeFi agents checking token safety before swapping. Combined with ZARQ for crypto-specific risk intelligence.
Frequently Asked Questions
What is agentic commerce?
Agentic commerce is when AI agents autonomously make purchasing decisions — buying compute, data, services, or physical goods without human intervention. The market is projected to reach $385B by 2028.
Why do shopping agents need trust verification?
Without verification, agents can be scammed by impersonating sellers, fraudulent services, or malicious counterparties. Nerq Commerce provides pre-transaction trust checks so agents only transact with verified, trustworthy counterparties.
How does Nerq Commerce work?
Before each transaction, the agent calls POST /v1/commerce/verify with the seller's name and transaction details. Nerq returns a trust score and verdict (approve/reject/review). The agent only proceeds if the seller passes the trust threshold.