Log in to manage your agent cards
Copy this now. It won't be shown again.
Don't have an account? Sign up
Use your API key to create virtual cards programmatically
// Install: npm install agentmint (coming soon) // For now, use the REST API directly: const response = await fetch('https://agentmint.polsia.app/v1/cards', { method: 'POST', headers: { 'Content-Type': 'application/json', 'X-API-Key': 'am_live_your_key_here' }, body: JSON.stringify({ agent: 'shopping-agent-01', limit: 500, currency: 'USD', merchants: ['amazon.com', '*'] }) }); const card = await response.json(); // { id: 1, agent: 'shopping-agent-01', last4: '4829', status: 'active' }
All endpoints accept JSON and require an API key
# Create a card POST /v1/cards body: { agent, limit, currency, merchants } # List all cards GET /v1/cards # Freeze a card POST /v1/cards/:id/freeze # Unfreeze a card POST /v1/cards/:id/unfreeze # Authentication: X-API-Key header X-API-Key: am_live_your_key_here
Create a virtual card for your AI agent