Documentation
Welcome to the FreeAI documentation. Learn how to integrate AI-powered web automation into your applications with our comprehensive guides and API reference.
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);