Get up and running with Feather in under 5 minutes. Create your first voice AI agent and make your first call.
curl -X POST "https://prod.featherhq.com/api/v1/agents" \ -H "X-API-Key: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "name": "Docs Agent", "description": "Agent for getting docs", "channels": [ "INBOUND_CALL" ], "voicemailMessage": null, "sttConfigId": "nova-3-stt", "ttsConfigId": "aura-2-tts", "llmConfigId": "gpt-4o-mini-llm", "overrideSTTConfig": null, "overrideTTSConfig": null, "overrideLLMConfig": null, "mode": "PROMPT", "prompt": { "system": "You are a helpful assistant that can answer questions about the documentation.", }, "useKnowledgeBase": false, "voiceId": "6011b4c8-6140-4b7e-8a92-d9880de97b77" }'
curl -X POST "https://prod.featherhq.com/api/v1/twilio/import" \ -H "X-API-Key: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "accountSid": "YOUR_TWILIO_ACCOUNT_SID", "authToken": "YOUR_TWILIO_AUTH_TOKEN", "phoneNumber": "+1234567890" }'
curl -X PUT "https://prod.featherhq.com/api/v1/phone-number/outbound/{id}/dispatch-rule" \ -H "X-API-Key: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "agentIds": ["YOUR_AGENT_ID"] }'
curl -X POST "https://prod.featherhq.com/api/v1/agent/{agentId}/dispatch" \ -H "X-API-Key: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "leadId": "lead-123", "firstName": "John", "toPhoneNumber": "+1234567890", "mode": "audio" }'