1. Get your credentials
You need an Agentcard organizationclient_id and client_secret. Create them in the dashboard and exchange them for an access token:
$ORG_TOKEN below. Sandbox credentials create sandbox sessions and sandbox authorizations, so start there.
2. Store a card
Create a vault session and send the user the link over whatever channel you already share with them (iMessage, WhatsApp, your app).vault.session_linked webhook with their user_id, or you poll the session until its status is linked. Store that user_id, you need it on every purchase.
For a test run, store a test card: 4242 4242 4242 4242, any future expiry, any CVC.
More on adding cards →
3. Attach Agentcard to your browser
Install the SDK next to your browser provider. This example uses KERNEL; Browserbase and any CDP browser work the same way.4. Complete the purchase
Let your agent shop as usual. At checkout it should fill the card form with placeholder data (4242 4242 4242 4242) and submit. The Agentcard SDK intercepts the processor request and pauses it. onApprovalUrl fires with a link; send it to the user. They approve with Face ID, their device sends the real card to the processor, and the paused request resumes with the real response.
Then confirm the order with the merchant before you tell the user anything:
Try it against a store that always works
shop.agentcard.sh is a demo store on Stripe test mode, kept running for exactly this rehearsal. Add a product, submit the card form with the placeholder card, approve on your phone, and the order completes with a real test-mode charge.What’s next
Adding a card
Open vs connected sessions, webhooks vs polling, returning users.
Creating a cart
Browsers, SDK options, and the Purchase API alternative.
Completing a purchase
Approval, reconciliation, webhooks, supported processors.