Documentation

Everything you need to set up and customize your AI front desk.

Quick Start

1. Create your AI front desk

Sign up, paste your website URL, and click "Build AI Front Desk." We'll read your site and build a trained AI receptionist in under 60 seconds.

2. Test it

Use the Preview page to test your AI front desk. Ask questions about your business and verify the responses are accurate.

3. Deploy it

Copy the embed code from your agent's Settings tab and add it to your website. One line of code, and your AI front desk is live.

Embedding the Chat Widget

Add this single line to your website, just before the closing </body> tag:

<script src="https://maketrend.ai/widget.js" data-agent-id="YOUR_AGENT_ID"></script>

Replace YOUR_AGENT_ID with your agent's ID from the dashboard.

Knowledge Base

Your AI front desk's knowledge base is automatically generated from your website content. You can also manually add, edit, or remove entries from the Knowledge Base tab in your agent's dashboard.

Auto-Refresh

On Pro plans and above, we automatically re-scrape your website weekly to keep your AI front desk up to date with any changes to your site.

API

Use our REST API to integrate MakeTrend with your existing systems.

GET /api/chat?agentId=YOUR_ID

Get agent info (name, greeting, widget config).

POST /api/chat

Send a message and get an AI response.

{
  "agentId": "YOUR_AGENT_ID",
  "conversationId": null,  // null for first message
  "message": "What services do you offer?"
}