Tools
Web Fetch
Fetch and extract content from a specified web URL.
post/v1/tools/web-fetch
Request body
Example request
{
"url": "https://example.com/article"
}Response
Web content fetched successfully.
Example response
{
"content": [
{
"text": "The analysis shows that Q4 revenue increased by 25% compared to Q3.",
"type": "text"
}
],
"is_error": false
}