internetarchive-ts - v0.1.0
    Preparing search index...

    Type Alias IaScrapeSearchParamsBeta

    type IaScrapeSearchParams = {
        count?: number;
        cursor?: string;
        fields?: string;
        output?: IaQueryOutput;
        q: string;
        scope?: IaScope;
        sorts?: string;
        total_only?: boolean;
    }
    Index

    Properties

    count?: number

    Specifies how many results to return per page, positive integer

    100

    10000

    cursor?: string

    Optional cursor to continue fetching items from a previous result

    fields?: string

    List of fields to return. Field "identifier" is always included

    output?: IaQueryOutput

    Query output, must be set to "json" for API client requests

    q: string

    Query string

    scope?: IaScope

    The scope of the query. Possible values are 'standard' or 'all'. The 'all' scope requires authorization

    "standard"
    
    sorts?: string

    Up to 3 sort fields

    total_only?: boolean

    Return no items, only total number of items found