curl -X POST https://api.thinnest.ai/v1/agents \
-H "Authorization: Bearer $THINNESTAI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Billing Agent",
"model": "gpt-4o",
"instructions": "You help customers pay their invoices. Always confirm the amount before processing. Never read back the full card number — only the last 4 digits.",
"voiceEnabled": true,
"transcriber": { "provider": "deepgram", "model": "nova-2-conversationalai" },
"voice": { "provider": "deepgram", "voiceId": "aura-2-thalia-en" },
"paymentProcessingEnabled": true,
"paymentProvider": "stripe",
"paymentCurrency": "USD",
"paymentMaxAmountCents": 100000,
"paymentPauseRecording": true
}'