NB Scraper Docs - v1.1.8
    Preparing search index...

    Interface NBScraperResponse<T>

    Standard response structure for all scraper functions

    NBScraperResponse

    interface NBScraperResponse<T = unknown> {
        creator: string;
        status: boolean;
        data?: T;
        error?: string;
    }

    Type Parameters

    • T = unknown

      The type of the data property

    Index

    Properties

    creator: string

    The creator/author of this scraper

    status: boolean

    Whether the operation was successful

    data?: T

    The scraped data (only present when status is true)

    error?: string

    Error message (only present when status is false)