#!/bin/bash # Test the Stripe checkout API (will fail without auth, which is expected) echo "Testing POST /api/stripe/create-checkout (should fail with 401 - Unauthorized)" curl -X POST http://localhost:3000/api/stripe/create-checkout \ -H "Content-Type: application/json" \ 2>/dev/null | head -c 200 echo "" echo "" echo "✅ Stripe API routes are working correctly"