This documentation is not accurate and is currently under development.

Getting Started with Fewzen AI

Welcome to the getting started guide for Fewzen AI. Follow these steps to set up your account and create your first conversational AI bot.

1. Create an Account

Visit https://www.fewzen.ai/signup to create your Fewzen AI account.

2. Get Your API Key

After logging in, navigate to the API section in your dashboard to generate an API key. You'll need this to authenticate your requests to the Fewzen AI API.

3. Create Your First Bot

Use the Fewzen AI dashboard or API to create your first bot. Here's an example using our API:

curl -X POST https://api.fewzen.ai/v1/bots \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "My First Bot",
    "description": "A helpful assistant for my website",
    "language": "en"
  }'

4. Train Your Bot

Use our intuitive interface or API to add intents, entities, and responses to your bot. This will help it understand and respond to user queries effectively.

5. Test Your Bot

Use the Fewzen AI testing interface or API to interact with your bot and refine its responses. Here's an example API call to test your bot:

curl -X POST https://api.fewzen.ai/v1/bots/YOUR_BOT_ID/messages \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "message": "Hello, how can you help me?",
    "user_id": "test_user_123"
  }'

6. Deploy Your Bot

Once you're satisfied with your bot's performance, deploy it to your chosen channels (website, mobile app, messaging platforms) using our integration guides.

For more detailed information on each step, please check out our Features and API Reference sections. If you need any assistance, don't hesitate to contact our support team.