Member Junction
    Preparing search index...

    Action that performs web search using the Google Custom Search JSON API and returns structured results.

    // Basic Google search
    await runAction({
    ActionName: 'Google Custom Search',
    Params: [{
    Name: 'Query',
    Value: 'latest trends in renewable energy'
    }]
    });

    // Search with additional options
    await runAction({
    ActionName: 'Google Custom Search',
    Params: [{
    Name: 'Query',
    Value: 'AI regulation whitepapers'
    }, {
    Name: 'MaxResults',
    Value: 5
    }, {
    Name: 'SafeSearch',
    Value: 'high'
    }, {
    Name: 'SiteSearch',
    Value: 'europa.eu'
    }, {
    Name: 'Verbosity',
    Value: 'minimal' // 'minimal' | 'standard' (default) | 'detailed'
    }]
    });

    Hierarchy (View Summary)

    Index

    Constructors

    Methods

    Constructors

    Methods