Quickstart

Get up and running with Konnect.ai in under 5 minutes.

Prerequisites

  • A Konnect.ai account (free tier available)
  • A web browser or API client for testing
1

Create an account

Sign up for a free Konnect.ai account to get started. You'll receive 50 free queries per month.

2

Send your first query

Once logged in, you can start chatting immediately. Try asking a question in the chat interface:

Example prompt:

"What are the key differences between REST and GraphQL APIs?"

By default, your query will be routed to the optimal model using Smart Chat mode.

3

Try different query modes

Experiment with different modes to see how multiple AI models can provide better answers:

Smart Chat (Free)

Best for quick questions. Auto-routes to the most suitable model.

Ensemble (Pro)

Query multiple models and get a synthesized response. Great for important decisions.

Debate (Pro)

Two models argue opposing positions. Perfect for exploring controversial topics.

Council (Power)

Expert panel with different perspectives. Ideal for complex, multi-disciplinary problems.

4

Integrate via API (Optional)

Power tier users can access the API for programmatic integration. Here's a quick example:

cURL
curl https://api.konnect.ai/v1/chat \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "message": "What is quantum computing?",
    "mode": "ensemble"
  }'

See the API Reference for complete documentation.

Next steps