instagram-private-api
Version:
Instagram private API wrapper for full access to instagram
29 lines (28 loc) • 823 B
TypeScript
export interface MusicMoodFeedResponseRootObject {
items: MusicMoodFeedResponseItemsItem[];
page_info: MusicMoodFeedResponsePage_info;
alacorn_session_id: string;
status: string;
}
export interface MusicMoodFeedResponseItemsItem {
track: MusicMoodFeedResponseTrack;
}
export interface MusicMoodFeedResponseTrack {
id: string;
title: string;
subtitle: string;
display_artist: string;
cover_artwork_uri: string;
cover_artwork_thumbnail_uri: string;
progressive_download_url: string;
highlight_start_times_in_ms: number[];
is_explicit: boolean;
dash_manifest: string;
has_lyrics: boolean;
audio_asset_id: null;
}
export interface MusicMoodFeedResponsePage_info {
next_max_id: string;
more_available: boolean;
auto_load_more_available: boolean;
}