crawl

提取网页的内容,让你的模型快速具备分析网页的能力


POST/v1/ai/crawl

AI 搜索接口

提取网页的内容,让你的模型快速具备分析网页的能力

Optional attributes

  • Name
    url
    Type
    string
    Description

    要爬取的url、一个网址、一个公众号链接

Request

GET
/v1/crawl
  curl --request POST \
    --url https://api.fe8.cn/v1/ai/crawl \
    --header 'Authorization: Bearer <token>' \
    --header 'Content-Type: application/json' \
    --data '{
      "url": "<string>"
  }'

Response

  {
    "content": "<string>",
    "link": "<string>",
    "title": "<string>"
  }

Was this page helpful?