Skip to main content

ExtractPageToolResponse

Structured response returned by the generic page-extraction tool endpoint.

urlUrl (string)required

Original URL requested by the caller.

final_urlFinal Url (string)required

Final URL after redirects were followed.

title object

Best-effort page title when one could be determined.

anyOf
string
textText (string)required

Readable extracted text content from the fetched page.

truncatedTruncated (boolean)required

Whether the extracted text was truncated to satisfy the max_chars limit.

providerProvider (string)required

Backend provider implementation that produced the result.

ExtractPageToolResponse
{
"url": "string",
"final_url": "string",
"title": "string",
"text": "string",
"truncated": true,
"provider": "string"
}