curl -X POST https://api.thinnest.ai/v1/agents \
-H "Authorization: Bearer $THINNESTAI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Outbound Sales Agent",
"model": "gpt-4o",
"instructions": "You make outbound sales calls. Before calling any number, check the DNC list first. If the number is blocked, do NOT call it.",
"voiceEnabled": true,
"transcriber": { "provider": "deepgram", "model": "nova-2-conversationalai" },
"voice": { "provider": "deepgram", "voiceId": "aura-2-thalia-en" },
"dncListEnabled": true,
"dncListSource": "internal",
"dncInternalNumbers": ["+14155551111", "+14155552222"],
"dncCheckMode": "before_call",
"dncBlockAction": "block"
}'