The result of the URL context.

interface URLContextResult {
    status?: "error" | "success" | "paywall" | "unsafe";
    url?: string;
}

Properties

Properties

status?: "error" | "success" | "paywall" | "unsafe"

The status of the URL retrieval.

url?: string

The URL that was fetched.