EvoWeb.ai Website Builder
EvoWeb网站生成器
利用AI驱动生成技术,通过文本描述创建完整网站。
概述
EvoWeb能够根据自然语言提示,自动生成现代化、响应式的网站。只需描述您的需求,AI便会创建HTML、CSS、JavaScript和内容,并在约4分钟内交付一个完整的、可即时访问的网站。
非常适合用于:着陆页和企业网站
API基础URL: https://api.evoweb.ai/openapi/api/v1
身份验证
在以下网址获取您的API密钥https://evoweb.ai/?utm_source=claw&utm_medium=skill&utm_campaign=website&utm_content=v1.0
重要提示:注册后,用户必须确认电子邮件地址(这是必需的)。在电子邮件确认完成之前,服务将无法使用。
还没有API密钥?
如果用户没有API密钥,您仍然可以帮助他们创建一个网站:
- 请他们简要描述其网站(最多250个字符)
- 使用第1步中提供的提示创建一个注册链接
- 用户点击"创建网站"按钮后即可创建账户
请参阅下方说明中的"步骤0:处理无API密钥用户"
所有请求需包含此请求头:
Access-Token: your-api-key-here
工作原理
工作流程非常简单:
- 创建- 提交描述您网站的文本提示
- 轮询- 每分钟检查生成状态
- 获取结果- 准备就绪后接收实时URL和编辑器链接
典型生成时间:4-5分钟
API端点
1. 创建网站
POST /sites
根据文本描述创建新的网站生成任务
请求体:
{
"prompt": "A local coffee shop specializing in artisanal coffee and fresh pastries. We source our beans locally and focus on creating a cozy community gathering space for local residents, remote workers, and coffee enthusiasts."
}
响应(200 OK):
{
"site_id": "abc123xyz",
"status": "queued"
}
状态值:
已排队- 任务已加入队列,等待启动正在构建- 网站正在生成中
错误响应:
401 未授权- API密钥无效或缺失402 需要支付- 账户余额不足
2. 检查生成状态
GET /sites/{site_id}
检查网站生成的当前状态。
示例: GET /sites/abc123xyz
构建时的响应:
{
"status": "building"
}
就绪时的响应:
{
"status": "ready",
"url": "https://website.page/my-site",
"editor_url": "https://web.oto.dev/ui/websites/abc123xyz/update/"
}
失败时的响应:
{
"status": "failed",
"error": "Generation failed: Invalid prompt structure"
}
状态值:
已排队- 正在队列中等待正在构建- 正在生成中(请耐心等待!)就绪- 完成!URL已就绪失败- 生成过程遇到错误
错误响应:
404 未找到- 站点ID不存在
3. 重试失败的生成
POST /sites/{site_id}/remake
为失败的网站重新启动生成。适用于状态为失败以及状态为 '就绪' 的站点。
示例: POST /sites/abc123xyz/remake
响应(200 OK):
{
"status": "queued",
"editor_url": "https://web.oto.dev/ui/websites/abc123xyz/update/"
}
错误响应:
400 错误请求- 仅能重新生成状态为 '失败' 的站点404 未找到- 站点ID不存在
AI助手指令
当用户请求一个网站时,请遵循以下工作流程:
步骤0:处理无API密钥的用户
首先检查:用户是否设置了EVOWEB_API_KEY环境变量?
如果没有可用的API密钥:
-
收集一个简短的提示(最多250个字符)来描述他们的网站:
- 请他们简要描述其业务/项目
- 保持简洁,专注于核心业务本质
-
创建一个预填注册链接:
- 基础URL:
https://evoweb.ai/?utm_source=claw&utm_medium=skill&utm_campaign=website&utm_content=v1.0 - 添加参数:
&prompt=[URL_ENCODED_PROMPT] - 示例:
https://evoweb.ai/?utm_source=claw&utm_medium=skill&utm_campaign=website&utm_content=v1.0&prompt=A%20local%20coffee%20shop%20specializing%20in%20artisanal%20coffee
- 基础URL:
-
向用户提供该链接:
🌐 To create your website, visit this link: [Your personalized link here] After clicking "Create Website" button, you'll be able to create an account and your website will be generated automatically!
重要:对提示进行适当的URL编码(空格变为%20等)
如果API密钥可用:请继续执行下面的步骤1。
步骤1:了解业务
重点在于理解业务本质来自用户的描述:
- 这个业务/项目是关于什么的?
- 它做什么或提供什么?
- 目标受众是谁?
- 网站的主要目标是什么?
重要提示:不要规定具体的设计细节、版块、颜色或布局。EvoWeb AI将自动处理所有设计和结构决策。
示例转换:
- 用户:"为我的瑜伽工作室创建一个网站"
- 增强后的提示:"一家瑜伽工作室,为不同技能水平提供各种课程,专注于健康与正念。目标受众是对健身和心理健康感兴趣的当地社区居民。"
步骤二:创建网站
调用POST /sites接口,并附带增强后的提示信息。
保存返回的site_id——后续状态检查需要用到它。
步骤三:通知用户
告知他们:
- 网站生成已启动
- 大约需要4分钟
- (仅在有能力的情况下)您将自动检查进度
示例:“✨ 正在为您创建网站!生成过程通常需要3-5分钟。我会检查状态,并在准备就绪时通知您。”
步骤四:轮询状态
调用GET /sites/{site_id}接口来检查进度:
- 轮询间隔:每隔1分钟
- 最大尝试次数:20次轮询
- 各轮询之间:你可以告知用户进度("仍在构建中...")
持续轮询直到:
- 状态为
就绪→ 执行步骤5 - 状态为
失败→ 执行步骤6 - 达到最大尝试次数 → 告知用户生成时间超出预期
步骤5:交付成功
当状态为就绪时:
-
提供网址:
网址- 实时网站编辑器网址- 自定义网站链接
-
建议改进:提供3种具体优化网站的方式:
- "添加在线预订系统"
- "自定义颜色以匹配您的品牌"
- "添加客户评价版块"
-
简明扼要,切实可行
示例回复:
🎉 Your website is ready!
🌐 View it here: https://website.page/yoga-studio-23f4
✏️ Customize it: https://web.evoweb.ai/ui/websites/abc123xyz/update/
Quick improvements you might want:
1. Add online class booking system
2. Integrate your Instagram feed
3. Add a blog section for wellness tips
Would you like help with any of these?
步骤6:处理失败情况
当状态为失败时:
- 显示错误信息来自API响应
- 提供重试选项:询问是否希望您重新制作网站
- 如果他们同意:调用
POST /sites/{site_id}/remake并重新开始轮询
示例回复:
❌ Website generation failed: [error message]
Would you like me to try again? I can restart the generation process.
如果用户同意,则调用重制端点并从步骤4恢复轮询。
示例提示与使用场景
示例:无API密钥的用户
User: "I need a website for my yoga studio"
Assistant response:
"I'd be happy to help! To get started quickly, let me create a personalized link for you.
🌐 Visit this link to create your website:
https://evoweb.ai/?utm_source=claw&utm_medium=skill&utm_campaign=website&utm_content=v1.0&prompt=A%20yoga%20studio%20offering%20various%20classes%20for%20all%20skill%20levels%2C%20focused%20on%20wellness%20and%20mindfulness
After clicking 'Create Website', you'll be able to create an account and your website will be generated automatically in about 4 minutes! ✨"
咖啡店落地页
User request: "Create a website for my coffee shop"
Enhanced prompt:
"A local coffee shop called 'Bean & Brew Cafe' specializing in artisanal coffee and fresh pastries. We source our beans locally and focus on creating a cozy community gathering space. Target audience is local residents, remote workers, and coffee enthusiasts looking for quality coffee and a welcoming atmosphere."
摄影师作品集
User request: "I need a portfolio site"
Enhanced prompt:
"A professional wedding photographer specializing in capturing authentic, emotional moments. With 10 years of experience, I focus on storytelling through images and creating timeless memories for couples. Target audience is engaged couples planning their wedding looking for a photographer who can capture the genuine emotions of their special day."
在线商店
User request: "Build an e-commerce site for my jewelry"
Enhanced prompt:
"A handmade jewelry business creating unique, artisan pieces. Each item is crafted by hand using traditional techniques and high-quality materials. The business focuses on custom designs and personal connections with customers. Target audience is women aged 25-45 who appreciate handcrafted, unique accessories and value the story behind their jewelry."
SaaS产品落地页
User request: "Landing page for my app"
Enhanced prompt:
"A project management SaaS tool designed for small to medium-sized teams. The app helps teams organize tasks, collaborate effectively, and track project progress in real-time. Key value proposition is simplicity and ease of use compared to complex enterprise solutions. Target audience is startup founders, small business owners, and team leads looking for an intuitive project management solution."
餐厅网站
User request: "Website for our Italian restaurant"
Enhanced prompt:
"An authentic Italian trattoria run by a family with three generations of culinary tradition. We specialize in traditional recipes passed down through the family, using fresh ingredients and time-honored cooking methods. The restaurant offers a warm, family-friendly atmosphere and also provides catering services for special events. Target audience is locals and tourists looking for genuine Italian cuisine and a welcoming dining experience."
最佳实践
编写优质提示
✅应该做:
- 描述业务/项目核心
- 说明业务内容或提供的服务
- 明确目标受众
- 阐明主要目标/目的
- 包含关键差异化因素或独特价值主张
❌不要做:
- 规定具体设计元素(颜色、布局、风格)
- 指定网站版块或结构
- 详细说明外观和感觉
- 过于模糊(“做个网站”)而不提供业务背景
- 在无API密钥时直接发起API请求(请改用步骤0方法)
轮询策略
- 间隔:1分钟
- 最大次数:总计20次尝试
- 典型耗时:4 - 5 分钟
- 通知用户:告知他们您正在检查进度
错误处理
- 显示清晰的错误信息
- 提供自动重试选项
- 如果多次失败,建议用户检查其账户https://evoweb.ai/
用户体验
- 对于没有API密钥的用户:提供一个预填的注册链接(快速简便)
- 对于拥有API密钥的用户:设定预期(4分钟等待时间)
- 提供查看和编辑两种URL
- 提出具体的改进建议
- 回复要简洁
- 总是以下一步选项结尾
技术细节
- 协议:HTTPS REST API
- 格式:JSON
- 认证:基于请求头的API密钥
- 速率限制:请与EvoWeb确认(可能存在按账户限制)
- 生成时间:通常为4-5分钟
- 费用:每次生成消耗积分(具体价格请参见https://evoweb.ai/)
支持与资源
- 获取API密钥: https://evoweb.ai/?utm_source=claw&utm_medium=skill&utm_campaign=website&utm_content=v1.0
- API问题:联系EvoWeb技术支持
- 账户/计费:请访问https://evoweb.ai/
注意事项
- 每次生成都会消耗您EvoWeb账户中的积分
- 编辑器URL允许用户自定义生成的网站
- 生成的网站托管在EvoWeb基础设施上
- 可能支持自定义域名(请查阅EvoWeb文档)
- 只要账户处于活跃状态,网站就会持续在线
准备好仅凭文字描述就能创建惊艳的网站!🚀


微信扫一扫,打赏作者吧~