Documentation

Welcome to the FreeAI documentation. Learn how to integrate AI-powered web automation into your applications with our comprehensive guides and API reference.

🚀

Quick Start

Get up and running with FreeAI in under 5 minutes.

Get Started →
📚

API Reference

Complete API documentation with examples and responses.

View API →
🎮

Playground

Try FreeAI interactively with our live playground.

Open Playground →

Popular Topics

Setting Up AI Providers

Learn how to configure multiple AI providers including Gemini, ChatGPT, and Groq for maximum reliability.

Read more →

Stealth Web Automation

Master advanced techniques for undetectable browser automation with anti-bot measures.

Read more →

Structured Data Extraction

Extract and validate structured data from AI responses using JSON schemas.

Read more →

Serverless Deployment

Deploy FreeAI on Vercel with optimized configuration for serverless environments.

Read more →

Quick Example

// Basic chat API usage
const response = await fetch('/api/chat', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    message: 'Analyze this webpage and extract key information',
    options: {
      provider: 'gemini',
      stealth: true
    }
  })
});

const data = await response.json();
console.log(data.response);

Need Help?

Community Support

Get help from our community of developers and contributors.

Visit Support →

Report Issues

Found a bug or have a feature request? Let us know.

Contact Us →