Member Junction
    Preparing search index...

    Action that retrieves and processes web content in various formats Supports JSON, PDF, DOCX, XML, CSV, HTML and more - similar to Claude's web reading capabilities

    // Get JSON API response
    await runAction({
    ActionName: 'Web Page Content',
    Params: [{
    Name: 'URL',
    Value: 'https://api.example.com/data'
    }, {
    Name: 'ContentType',
    Value: 'json'
    }]
    });

    // Get PDF content as text
    await runAction({
    ActionName: 'Web Page Content',
    Params: [{
    Name: 'URL',
    Value: 'https://example.com/document.pdf'
    }, {
    Name: 'ContentType',
    Value: 'text'
    }]
    });

    // Get DOCX content as markdown
    await runAction({
    ActionName: 'Web Page Content',
    Params: [{
    Name: 'URL',
    Value: 'https://example.com/document.docx'
    }, {
    Name: 'ContentType',
    Value: 'markdown'
    }]
    });

    Hierarchy (View Summary)

    Index

    Constructors

    Methods

    Constructors

    Methods