//接口 · 网页解析器
一个接口,接住 任意公开 URL
把 URL 传进来,页面里真正有用的部分就都拿回来了:标题、正文、作者、发布日期、链接、图片、字数。导航和广告交给 AI 提取剥掉,不靠选择器,页面一改版,选择器就废了。每个 URL 1 credit。
免费开始7 天免费试用
你会拿到的字段
url
title
content
author
published_date
meta_description
links
images
word_count
返回什么
POST /api/webparser/parse
{
"url": "https://cartora.example/blog/freight-index",
"title": "The Mid-Market Freight Index, Explained",
"author": "Dana Reyes",
"published_date": "2026-06-12",
"meta_description": "How we compute the weekly index.",
"content": "Freight rates for mid-market shippers moved…",
"links": [
{ "text": "Methodology", "url": "/methodology" }
],
"word_count": 1840
}常见问题
支持。客户端渲染的内容会先跑完再提取。单页应用返回真实内容,不是空壳。需要链接和图片时,指定参数就会一起返回。