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

    Interface SoundCloudUser

    Represents a SoundCloud user profile.

    interface SoundCloudUser {
        avatar_url: string;
        city: string;
        comments_count: number;
        country: string;
        created_at: string;
        description: string;
        discogs_name: string | null;
        first_name: string;
        followers_count: number;
        followings_count: number;
        full_name: string;
        id: number;
        kind: string;
        last_modified: string;
        last_name: string;
        likes_count: number;
        myspace_name: string | null;
        online: boolean;
        permalink: string;
        permalink_url: string;
        plan: string;
        playlist_count: number;
        public_favorites_count: number;
        reposts_count: number;
        subscriptions: SoundCloudSubscription[];
        track_count: number;
        uri: string;
        urn: string;
        username: string;
        website: string | null;
        website_title: string | null;
    }

    Hierarchy (View Summary)

    Index

    Properties

    avatar_url: string

    URL to the user's avatar image

    city: string

    The user's city (may be empty string if not set)

    comments_count: number

    Comment count for this user.

    Always returns 0 in current API responses.

    country: string

    The user's country (may be empty string if not set)

    created_at: string

    ISO 8601 timestamp of when the user account was created

    description: string

    The user's profile description / bio

    discogs_name: string | null

    The user's Discogs username, or null if not set

    first_name: string

    The user's first name

    followers_count: number

    Total number of followers

    followings_count: number

    Total number of users this user is following

    full_name: string

    The user's full name (first + last)

    id: number

    The user's unique numeric ID on SoundCloud

    kind: string

    Resource type, always "user"

    last_modified: string

    ISO 8601 timestamp of the last profile modification

    last_name: string

    The user's last name

    likes_count: number

    Total number of public likes (favorites)

    myspace_name: string | null

    The user's Myspace username, or null if not set

    online: boolean

    Whether the user is currently online

    permalink: string

    URL-friendly slug for the user's profile (e.g. "artist-name")

    permalink_url: string

    Full URL to the user's SoundCloud profile page

    plan: string

    The user's subscription plan (e.g. "Free", "Pro")

    playlist_count: number

    Total number of public playlists

    public_favorites_count: number

    Total number of public favorites

    reposts_count: number

    Total number of reposts

    subscriptions: SoundCloudSubscription[]

    The user's active subscriptions

    track_count: number

    Total number of public tracks

    uri: string

    API resource URI for this user

    urn: string

    URN identifier (e.g. "soundcloud:users:123")

    username: string

    The user's display name

    website: string | null

    The user's website URL, or null if not set

    website_title: string | null

    Display title for the user's website, or null if not set