SongGuess
    Preparing search index...

    A single Web Search result.

    Web Search is discovery-only -- results carry catalog metadata about a page but never the page body. To read a result's content the caller invokes the global fetch() API against the result's url, at which point the destination's own access controls apply (including Cloudflare Pay-per-Crawl).

    type WebSearchResult = {
        description?: string;
        faviconUrl?: string;
        imageUrl?: string;
        lastModifiedDate?: string;
        title: string;
        url: string;
    }
    Index

    Properties

    description?: string

    Page-level description. May be absent.

    faviconUrl?: string

    Optional favicon URL for UI hints.

    imageUrl?: string

    Page meta image URL (typically the og:image). May be absent.

    lastModifiedDate?: string

    Last-modified date for the page, when known. Naive (no timezone) ISO-8601 datetime, e.g. "2025-11-30T04:39:48".

    title: string

    Page title.

    url: string

    Canonical URL.