Fetchply Docs
Agents

Creating Agents

Create a new AI agent from the dashboard — add your URL, configure settings, and start training.

Create a New Agent

Open the Dashboard

Go to fetchply.com/dashboard and click the Create Agent button in the top-right corner.

Enter Your Website URL

Paste the URL of the website you want to train on. Fetchply will crawl the site and extract content from every reachable page.

The crawler follows internal links starting from the URL you provide. It respects robots.txt rules and skips non-HTML content like images and videos.

Name Your Agent

Choose a descriptive name for your agent. This name appears in:

  • The dashboard sidebar
  • The widget header (visible to visitors)
  • Conversation logs and analytics

Start Training

Click Train to begin the training process. Fetchply will:

  1. Crawl your website and extract text content
  2. Clean and chunk the content into searchable segments
  3. Generate vector embeddings using AI
  4. Store everything in your agent's knowledge base

Training progress is shown in real-time. A typical 50-page website takes 1–2 minutes.

Test and Deploy

After training completes, use the Test Chat to verify your agent's answers. Then go to the Embed tab to get your widget code.

Creating Agents via API

You can also manage agents programmatically using the Fetchply API.

List your agents
curl -X GET https://fetchply.com/api/v1/agents \
  -H "Authorization: Bearer fp_your_api_key"

Plan limits: The number of agents you can create depends on your subscription plan. Free accounts are limited to 1 agent.

Deleting an Agent

Only the owner of an agent can delete it. Deleting an agent permanently removes:

  • All knowledge base data and vectors
  • Conversation history
  • Lead data
  • Analytics
  • Widget configuration

This action cannot be undone.

On this page