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

    Interface SoundCloudTrack

    SoundCloud Scraper Types

    interface SoundCloudTrack {
        id: number;
        title: string;
        url: string;
        duration: string;
        thumbnail: string;
        author: { name: string; url: string };
        like_count: string;
        download_count: string;
        play_count: string;
        release_date: null | string;
    }
    Index

    Properties

    id: number
    title: string
    url: string
    duration: string
    thumbnail: string
    author: { name: string; url: string }
    like_count: string
    download_count: string
    play_count: string
    release_date: null | string