soundcloud-api-ts - v1.9.0
    Preparing search index...

    Interface SoundCloudPaginatedResponse<T>

    Generic cursor-paginated response from the SoundCloud API. Most list endpoints return this shape with collection and next_href.

    interface SoundCloudPaginatedResponse<T> {
        collection: T[];
        next_href: string;
    }

    Type Parameters

    • T
    Index

    Properties

    collection: T[]

    Array of items in this page

    next_href: string

    URL to fetch the next page, or null/empty when there are no more pages