From dc584af2f211859ddf9b8119567e5d2b9764bcbc Mon Sep 17 00:00:00 2001 From: fullsizemalt <106900403+fullsizemalt@users.noreply.github.com> Date: Mon, 22 Dec 2025 23:09:43 -0800 Subject: [PATCH] feat: Add YouTube API fetch and import scripts with 620 videos --- backend/fetch_youtube.py | 207 ++ backend/import_youtube.py | 218 +- backend/youtube_videos.json | 4962 +++++++++++++++++++++++++++++++++++ 3 files changed, 5263 insertions(+), 124 deletions(-) create mode 100644 backend/fetch_youtube.py create mode 100644 backend/youtube_videos.json diff --git a/backend/fetch_youtube.py b/backend/fetch_youtube.py new file mode 100644 index 0000000..738cc30 --- /dev/null +++ b/backend/fetch_youtube.py @@ -0,0 +1,207 @@ +""" +Fetch all videos from Goose YouTube channel using YouTube Data API v3 +""" +import requests +import json +import re +from datetime import datetime + +API_KEY = "AIzaSyCxDpv6HM-sPD8vPJIBffwa2-skOpEJkOU" +CHANNEL_HANDLE = "@GooseTheBand" + +def get_channel_id(handle: str) -> str: + """Get channel ID from handle.""" + url = "https://www.googleapis.com/youtube/v3/search" + params = { + "key": API_KEY, + "q": handle, + "type": "channel", + "part": "snippet", + "maxResults": 1 + } + resp = requests.get(url, params=params) + data = resp.json() + if "items" in data and len(data["items"]) > 0: + return data["items"][0]["snippet"]["channelId"] + return None + +def get_uploads_playlist_id(channel_id: str) -> str: + """Get the uploads playlist ID for a channel.""" + url = "https://www.googleapis.com/youtube/v3/channels" + params = { + "key": API_KEY, + "id": channel_id, + "part": "contentDetails" + } + resp = requests.get(url, params=params) + data = resp.json() + if "items" in data and len(data["items"]) > 0: + return data["items"][0]["contentDetails"]["relatedPlaylists"]["uploads"] + return None + +def get_all_videos(playlist_id: str) -> list: + """Fetch all videos from a playlist (handles pagination).""" + videos = [] + url = "https://www.googleapis.com/youtube/v3/playlistItems" + next_page_token = None + + while True: + params = { + "key": API_KEY, + "playlistId": playlist_id, + "part": "snippet,contentDetails", + "maxResults": 50 + } + if next_page_token: + params["pageToken"] = next_page_token + + resp = requests.get(url, params=params) + data = resp.json() + + if "error" in data: + print(f"API Error: {data['error']}") + break + + for item in data.get("items", []): + snippet = item["snippet"] + video = { + "videoId": snippet["resourceId"]["videoId"], + "title": snippet["title"], + "description": snippet.get("description", ""), + "publishedAt": snippet["publishedAt"], + "thumbnails": snippet.get("thumbnails", {}) + } + videos.append(video) + + next_page_token = data.get("nextPageToken") + print(f"Fetched {len(videos)} videos so far...") + + if not next_page_token: + break + + return videos + +def parse_video_metadata(videos: list) -> list: + """Parse video titles to extract show date and type.""" + parsed = [] + + # Date patterns to look for in titles/descriptions + date_patterns = [ + r'(\d{1,2})[./](\d{1,2})[./](\d{2,4})', # M/D/YY or M.D.YYYY + r'(\d{4})-(\d{2})-(\d{2})', # YYYY-MM-DD + ] + + for video in videos: + title = video["title"] + desc = video.get("description", "") + + # Determine video type + video_type = "song" # default + title_lower = title.lower() + + if "full show" in title_lower or "live at" in title_lower or "night 1" in title_lower or "night 2" in title_lower or "night 3" in title_lower: + video_type = "full_show" + elif "→" in title or "->" in title: + video_type = "sequence" + elif "documentary" in title_lower or "behind" in title_lower: + video_type = "documentary" + elif "visualizer" in title_lower: + video_type = "visualizer" + elif "session" in title_lower or "studio" in title_lower: + video_type = "session" + + # Try to extract date + show_date = None + + # Check description first (often has date info) + combined_text = f"{title} {desc}" + for pattern in date_patterns: + match = re.search(pattern, combined_text) + if match: + groups = match.groups() + try: + if len(groups[0]) == 4: # YYYY-MM-DD + show_date = f"{groups[0]}-{groups[1]}-{groups[2]}" + else: # M/D/YY + year = groups[2] + if len(year) == 2: + year = "20" + year if int(year) < 50 else "19" + year + month = groups[0].zfill(2) + day = groups[1].zfill(2) + show_date = f"{year}-{month}-{day}" + break + except: + pass + + # Extract venue from title if possible + venue = None + venue_patterns = [ + r'@ (.+)$', + r'at (.+?) -', + r'Live at (.+)', + r'- (.+?, [A-Z]{2})$', + ] + for pattern in venue_patterns: + match = re.search(pattern, title, re.IGNORECASE) + if match: + venue = match.group(1).strip() + break + + parsed.append({ + "videoId": video["videoId"], + "title": title, + "date": show_date, + "venue": venue, + "type": video_type, + "publishedAt": video["publishedAt"] + }) + + return parsed + +def main(): + print("Fetching Goose YouTube channel videos...") + + # Get channel ID + print(f"Looking up channel: {CHANNEL_HANDLE}") + channel_id = get_channel_id(CHANNEL_HANDLE) + if not channel_id: + print("Could not find channel!") + return + print(f"Channel ID: {channel_id}") + + # Get uploads playlist + uploads_playlist = get_uploads_playlist_id(channel_id) + if not uploads_playlist: + print("Could not find uploads playlist!") + return + print(f"Uploads playlist: {uploads_playlist}") + + # Fetch all videos + videos = get_all_videos(uploads_playlist) + print(f"\nTotal videos found: {len(videos)}") + + # Parse metadata + parsed = parse_video_metadata(videos) + + # Save to JSON + output_file = "youtube_videos.json" + with open(output_file, 'w') as f: + json.dump(parsed, f, indent=2) + print(f"\nSaved to {output_file}") + + # Show stats + types = {} + dated = 0 + for v in parsed: + types[v["type"]] = types.get(v["type"], 0) + 1 + if v["date"]: + dated += 1 + + print("\n=== Stats ===") + print(f"Total: {len(parsed)}") + print(f"With dates: {dated}") + for vtype, count in sorted(types.items()): + print(f" {vtype}: {count}") + +if __name__ == "__main__": + main() diff --git a/backend/import_youtube.py b/backend/import_youtube.py index b1129c5..902beeb 100644 --- a/backend/import_youtube.py +++ b/backend/import_youtube.py @@ -1,6 +1,6 @@ """ -YouTube Video Import Script -Parses youtube.md and links videos to Performance and Show entities. +YouTube Video Import Script v2 +Imports videos from youtube_videos.json into the database. """ import json import re @@ -9,194 +9,164 @@ from sqlmodel import Session, select from database import engine from models import Performance, Show, Song -# Construct YouTube embed URL from videoId + def make_youtube_url(video_id: str) -> str: return f"https://www.youtube.com/watch?v={video_id}" -def parse_youtube_md(filepath: str) -> list: - """Extract JSON array from youtube.md markdown file.""" - with open(filepath, 'r') as f: - content = f.read() - - # Parse line-by-line looking for JSON objects - # This handles the escaped markdown format in the source file - videos = [] - in_json = False - - for line in content.split('\n'): - line = line.strip() - - # Detect start of JSON block (with or without escapes) - if 'json' in line.lower() and ('`' in line or '\\' in line): - in_json = True - continue - - # Skip array markers - if line in ['[', '\\[', ']']: - continue - - # Process JSON objects - if in_json and line.startswith('{'): - # Clean the line - clean_line = line.rstrip(',').rstrip() - # Remove trailing markdown escapes - clean_line = clean_line.replace('\\_', '_').replace('\\-', '-') - - if clean_line.endswith('}'): - try: - obj = json.loads(clean_line) - videos.append(obj) - except json.JSONDecodeError as e: - print(f"Parse error on line: {clean_line[:50]}... - {e}") - - return videos -def normalize_title(title: str) -> str: - """Normalize song title for matching.""" - return title.strip().lower() +def extract_song_title(title: str) -> str: + """Extract the actual song title from YouTube video title.""" + # Remove common prefixes + title = re.sub(r'^Goose\s*[-–—]\s*', '', title, flags=re.IGNORECASE) + + # Remove date patterns at end (e.g., "- 12/13/25 Providence, RI") + title = re.sub(r'\s*[-–—]\s*\d{1,2}/\d{1,2}/\d{2,4}.*$', '', title) + + # Remove "Live at..." suffix + title = re.sub(r'\s*[-–—]\s*Live at.*$', '', title, flags=re.IGNORECASE) + + # Remove "(Official Audio)" etc + title = re.sub(r'\s*\(Official\s*(Audio|Video|Visualizer)\)', '', title, flags=re.IGNORECASE) + + # Remove "(4K HDR)" etc + title = re.sub(r'\s*\(4K\s*HDR\)', '', title, flags=re.IGNORECASE) + + # Remove "Set I Opener" etc + title = re.sub(r'\s*Set\s*(I|II|1|2)?\s*Opener.*$', '', title, flags=re.IGNORECASE) + + return title.strip() -def import_videos(videos: list): + +def import_videos(): """Import video links into the database.""" + with open("youtube_videos.json", 'r') as f: + videos = json.load(f) + stats = { 'songs_matched': 0, 'songs_not_found': 0, 'sequences_processed': 0, 'full_shows_matched': 0, 'full_shows_not_found': 0, - 'skipped': 0 + 'no_date': 0, + 'skipped': 0, + 'show_not_found': 0 } with Session(engine) as session: for video in videos: video_id = video.get('videoId') - title = video.get('title', '') + raw_title = video.get('title', '') video_type = video.get('type', 'song') date_str = video.get('date') youtube_url = make_youtube_url(video_id) - if video_type == 'documentary': - print(f"[SKIP] Documentary: {title}") + # Skip non-performance content + if video_type in ('documentary', 'visualizer', 'session'): stats['skipped'] += 1 continue - if video_type == 'visualizer': - print(f"[SKIP] Visualizer: {title}") - stats['skipped'] += 1 - continue - - if video_type == 'session': - print(f"[SKIP] Session: {title}") - stats['skipped'] += 1 - continue - - if video_type == 'full_show': - # Match by date or event name - event_name = video.get('event') - if date_str: - show_date = datetime.strptime(date_str, '%Y-%m-%d') - statement = select(Show).where(Show.date == show_date) - show = session.exec(statement).first() - if show: - show.youtube_link = youtube_url - session.add(show) - print(f"[FULL SHOW] Linked: {title} -> Show ID {show.id}") - stats['full_shows_matched'] += 1 - else: - print(f"[FULL SHOW NOT FOUND] {title} (date: {date_str})") - stats['full_shows_not_found'] += 1 - else: - print(f"[FULL SHOW SKIP] No date for: {title}") - stats['skipped'] += 1 + # Skip videos without dates (can't match to show) + if not date_str: + stats['no_date'] += 1 continue # Parse date - if not date_str: - print(f"[SKIP] No date: {title}") - stats['skipped'] += 1 - continue - try: show_date = datetime.strptime(date_str, '%Y-%m-%d') except ValueError: - print(f"[SKIP] Invalid date format: {date_str}") - stats['skipped'] += 1 + stats['no_date'] += 1 continue # Find show by date - show_statement = select(Show).where(Show.date == show_date) - show = session.exec(show_statement).first() + show = session.exec( + select(Show).where(Show.date == show_date) + ).first() + if not show: - print(f"[SHOW NOT FOUND] Date: {date_str} for video: {title}") - stats['songs_not_found'] += 1 + stats['show_not_found'] += 1 continue - # Handle sequences (multiple songs) - if video_type == 'sequence' or '→' in title: - song_titles = [s.strip() for s in title.split('→')] + # Handle full shows - link to Show entity + if video_type == 'full_show': + show.youtube_link = youtube_url + session.add(show) + stats['full_shows_matched'] += 1 + print(f"[FULL SHOW] {date_str}: {raw_title[:50]}") + continue + + # Extract song title + song_title = extract_song_title(raw_title) + + # Handle sequences (multiple songs with →) + if video_type == 'sequence' or '→' in song_title: + song_titles = [s.strip() for s in re.split(r'[→>]', song_title)] matched_any = False - for song_title in song_titles: - # Find song by title - song_statement = select(Song).where(Song.title.ilike(f"%{song_title}%")) - songs = session.exec(song_statement).all() + for title in song_titles: + if not title: + continue + # Find song by title (case insensitive partial match) + songs = session.exec( + select(Song).where(Song.title.ilike(f"%{title}%")) + ).all() for song in songs: - # Find performance for this song on this show - perf_statement = select(Performance).where( - Performance.show_id == show.id, - Performance.song_id == song.id - ) - perf = session.exec(perf_statement).first() + perf = session.exec( + select(Performance).where( + Performance.show_id == show.id, + Performance.song_id == song.id + ) + ).first() + if perf: perf.youtube_link = youtube_url session.add(perf) - print(f"[SEQUENCE] Linked: {song_title} -> Performance ID {perf.id}") matched_any = True + print(f"[SEQ] {date_str}: {title} -> Perf {perf.id}") if matched_any: stats['sequences_processed'] += 1 else: - print(f"[SEQUENCE NOT FOUND] {title} on {date_str}") stats['songs_not_found'] += 1 continue - # Single song - song_statement = select(Song).where(Song.title.ilike(f"%{title}%")) - songs = session.exec(song_statement).all() + # Single song - find and link + songs = session.exec( + select(Song).where(Song.title.ilike(f"%{song_title}%")) + ).all() matched = False for song in songs: - perf_statement = select(Performance).where( - Performance.show_id == show.id, - Performance.song_id == song.id - ) - perf = session.exec(perf_statement).first() + perf = session.exec( + select(Performance).where( + Performance.show_id == show.id, + Performance.song_id == song.id + ) + ).first() + if perf: perf.youtube_link = youtube_url session.add(perf) - print(f"[SONG] Linked: {title} -> Performance ID {perf.id}") - stats['songs_matched'] += 1 matched = True + stats['songs_matched'] += 1 + print(f"[SONG] {date_str}: {song_title} -> Perf {perf.id}") break if not matched: - print(f"[SONG NOT FOUND] {title} on {date_str}") stats['songs_not_found'] += 1 session.commit() - print("\n=== Import Summary ===") + print("\n" + "="*50) + print("IMPORT SUMMARY") + print("="*50) for key, value in stats.items(): print(f" {key}: {value}") + + total_linked = stats['songs_matched'] + stats['sequences_processed'] + stats['full_shows_matched'] + print(f"\n TOTAL LINKED: {total_linked}") + if __name__ == "__main__": - import sys - - filepath = sys.argv[1] if len(sys.argv) > 1 else "../youtube.md" - print(f"Parsing YouTube data from: {filepath}") - - videos = parse_youtube_md(filepath) - print(f"Found {len(videos)} videos") - - if videos: - import_videos(videos) + import_videos() diff --git a/backend/youtube_videos.json b/backend/youtube_videos.json new file mode 100644 index 0000000..8a6a390 --- /dev/null +++ b/backend/youtube_videos.json @@ -0,0 +1,4962 @@ +[ + { + "videoId": "PvdtMSifDqU", + "title": "Goose - Thatch - 12/13/25 Providence, RI (4K HDR)", + "date": "2025-12-13", + "venue": null, + "type": "song", + "publishedAt": "2025-12-20T16:27:43Z" + }, + { + "videoId": "7vujKUzGtcg", + "title": "Goose - Give It Time - 12/13/25 Providence, RI (4K HDR)", + "date": "2025-12-13", + "venue": null, + "type": "song", + "publishedAt": "2025-12-20T16:27:38Z" + }, + { + "videoId": "nCnYJaIxBzo", + "title": "Goose - Pigs (Three Different Ones) - 12/12/25 Providence, RI (4K HDR)", + "date": "2025-12-12", + "venue": null, + "type": "song", + "publishedAt": "2025-12-20T16:27:34Z" + }, + { + "videoId": "Yeno3bJs4Ws", + "title": "Goose - Jed Stone \u2192 Master & Hound \u2192 Sugar Mountain - 12/12/25 Providence, RI (4K HDR)", + "date": "2025-12-12", + "venue": null, + "type": "sequence", + "publishedAt": "2025-12-19T16:12:37Z" + }, + { + "videoId": "zQI6-LloYwI", + "title": "Goose - Dramophone \u2192 The Empress of Organos - 12/13/25 Providence, RI (4K HDR)", + "date": "2025-12-13", + "venue": null, + "type": "sequence", + "publishedAt": "2025-12-15T20:15:36Z" + }, + { + "videoId": "WVWIPqxoRyw", + "title": "Goose 12/13/2025 Live from Goosemas Providence, RI Set Opener", + "date": "2025-12-13", + "venue": null, + "type": "song", + "publishedAt": "2025-12-14T13:10:59Z" + }, + { + "videoId": "F66jL0skeT4", + "title": "Goose - Arrow \u2192 Burn The Witch - 12/12/25 Providence, RI (4K HDR)", + "date": "2025-12-12", + "venue": null, + "type": "sequence", + "publishedAt": "2025-12-14T05:15:08Z" + }, + { + "videoId": "qbjilsOAV_M", + "title": "Goose 12/12/2025 Live from Goosemas Providence, RI Set Opener", + "date": "2025-12-12", + "venue": null, + "type": "song", + "publishedAt": "2025-12-13T01:36:22Z" + }, + { + "videoId": "JdWnhOIWh-I", + "title": "Show Upon Time", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-12-06T18:53:46Z" + }, + { + "videoId": "wtTiAwA5Ha4", + "title": "Goose Live at Viva El Gonzo 2025 - Night 3", + "date": null, + "venue": "Viva El Gonzo 2025", + "type": "full_show", + "publishedAt": "2025-11-28T23:30:07Z" + }, + { + "videoId": "USQNba0t-4A", + "title": "Goose Live at Viva El Gonzo 2025 - Night 2", + "date": null, + "venue": "Viva El Gonzo 2025", + "type": "full_show", + "publishedAt": "2025-11-28T20:30:06Z" + }, + { + "videoId": "vCdiwBSGtpk", + "title": "Goose Live at Viva El Gonzo 2025 - Night 1", + "date": null, + "venue": "Viva El Gonzo 2025", + "type": "full_show", + "publishedAt": "2025-11-28T18:00:06Z" + }, + { + "videoId": "1BbtYhhCMWs", + "title": "Goose - Jed Stone - 6/28/2025 - Live at MSG", + "date": "2025-06-28", + "venue": "MSG", + "type": "full_show", + "publishedAt": "2025-11-21T16:17:22Z" + }, + { + "videoId": "yCPFRcIByqI", + "title": "Goose - My Mind Has Been Consumed By Media - Live at Madison Square Garden (Official Audio)", + "date": "2025-06-28", + "venue": "Madison Square Garden (Official Audio)", + "type": "full_show", + "publishedAt": "2025-11-21T05:01:26Z" + }, + { + "videoId": "vE1F77CZbXQ", + "title": "Goose - Hungersite - Live at Madison Square Garden (Official Audio)", + "date": "2025-06-28", + "venue": "Madison Square Garden (Official Audio)", + "type": "full_show", + "publishedAt": "2025-11-21T05:01:14Z" + }, + { + "videoId": "rek58BRByTw", + "title": "Goose - Factory Fiction - Live at Madison Square Garden (Official Audio)", + "date": "2025-06-28", + "venue": "Madison Square Garden (Official Audio)", + "type": "full_show", + "publishedAt": "2025-11-21T05:01:13Z" + }, + { + "videoId": "rhP0-gKD_d8", + "title": "Goose - A Western Sun - Live at Madison Square Garden (Official Audio)", + "date": "2025-06-28", + "venue": "Madison Square Garden (Official Audio)", + "type": "full_show", + "publishedAt": "2025-11-21T05:01:08Z" + }, + { + "videoId": "jMhayG6WCIw", + "title": "Goose - Running Up That Hill - Live at Madison Square Garden (Official Audio)", + "date": "2025-06-28", + "venue": "Hill", + "type": "full_show", + "publishedAt": "2025-11-21T05:01:02Z" + }, + { + "videoId": "osPxSR5GmX8", + "title": "Goose - Animal - Live at Madison Square Garden (Official Audio)", + "date": "2025-06-28", + "venue": "Madison Square Garden (Official Audio)", + "type": "full_show", + "publishedAt": "2025-11-21T05:01:00Z" + }, + { + "videoId": "cyLYgo9r3xM", + "title": "Goose - Dripfield - Live at Madison Square Garden (Official Audio)", + "date": "2025-06-28", + "venue": "Madison Square Garden (Official Audio)", + "type": "full_show", + "publishedAt": "2025-11-21T05:00:59Z" + }, + { + "videoId": "nZE_w8hDukI", + "title": "Goose - Don't Leave Me This Way - Live at Madison Square Garden (Official Audio)", + "date": "2025-06-28", + "venue": "Madison Square Garden (Official Audio)", + "type": "full_show", + "publishedAt": "2025-11-21T05:00:56Z" + }, + { + "videoId": "W93zvUz4vyI", + "title": "Goose - Arcadia - Live at Madison Square Garden (Official Audio)", + "date": "2025-06-28", + "venue": "Madison Square Garden (Official Audio)", + "type": "full_show", + "publishedAt": "2025-11-21T05:00:46Z" + }, + { + "videoId": "XGENDkSAggw", + "title": "Goose - Thatch - Live at Madison Square Garden (Official Audio)", + "date": "2025-06-28", + "venue": "Madison Square Garden (Official Audio)", + "type": "full_show", + "publishedAt": "2025-11-21T05:00:43Z" + }, + { + "videoId": "PD7L0W_-as0", + "title": "Goose - Creatures - Live at Madison Square Garden (Official Audio)", + "date": "2025-06-28", + "venue": "Madison Square Garden (Official Audio)", + "type": "full_show", + "publishedAt": "2025-11-21T05:00:34Z" + }, + { + "videoId": "OfQJcbip0z8", + "title": "Goose - Tumble (Part II) - Live at Madison Square Garden (Official Audio)", + "date": "2025-06-28", + "venue": "Madison Square Garden (Official Audio)", + "type": "full_show", + "publishedAt": "2025-11-21T05:00:29Z" + }, + { + "videoId": "QSvXBDHSQ-g", + "title": "Goose - Shama Lama Ding Dong - Live at Madison Square Garden (Official Audio)", + "date": "2025-06-28", + "venue": "Madison Square Garden (Official Audio)", + "type": "full_show", + "publishedAt": "2025-11-21T05:00:27Z" + }, + { + "videoId": "QcQTAGkQwK4", + "title": "Goose - Tumble (Part I) - Live at Madison Square Garden (Official Audio)", + "date": "2025-06-28", + "venue": "Madison Square Garden (Official Audio)", + "type": "full_show", + "publishedAt": "2025-11-21T05:00:27Z" + }, + { + "videoId": "MJhjxFHLQ54", + "title": "Goose - Feel It Now - Live at Madison Square Garden (Official Audio)", + "date": "2025-06-28", + "venue": "Madison Square Garden (Official Audio)", + "type": "full_show", + "publishedAt": "2025-11-21T05:00:26Z" + }, + { + "videoId": "Ex45ZjpH374", + "title": "Goose - Dustin Hoffman - Live at Madison Square Garden (Official Audio)", + "date": "2025-06-28", + "venue": "Madison Square Garden (Official Audio)", + "type": "full_show", + "publishedAt": "2025-11-21T05:00:25Z" + }, + { + "videoId": "K1wqo3HylmY", + "title": "Goose - Jed Stone - Live at Madison Square Garden (Official Audio)", + "date": "2025-06-28", + "venue": "Madison Square Garden (Official Audio)", + "type": "full_show", + "publishedAt": "2025-11-21T05:00:24Z" + }, + { + "videoId": "MNX01QjpPJo", + "title": "Goose - Red Bird - Live at Madison Square Garden (Official Audio)", + "date": "2025-06-28", + "venue": "Madison Square Garden (Official Audio)", + "type": "full_show", + "publishedAt": "2025-11-21T05:00:23Z" + }, + { + "videoId": "HnGarxOW_q0", + "title": "Goose - Give It Time - Live at Madison Square Garden (Official Audio)", + "date": "2025-06-28", + "venue": "Madison Square Garden (Official Audio)", + "type": "full_show", + "publishedAt": "2025-11-21T05:00:19Z" + }, + { + "videoId": "pO51I6K-SCs", + "title": "The Making of Goosemas Bingo 2024", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-11-09T17:00:06Z" + }, + { + "videoId": "Ku0T1msIeyE", + "title": "Wanna see the magic behind last year\u2019s goosemas? Tune in at 12PM ET on 11/9 to watch the full video.", + "date": null, + "venue": null, + "type": "documentary", + "publishedAt": "2025-11-07T23:00:26Z" + }, + { + "videoId": "bP2Va734j-M", + "title": "Goose 11/02/2025 Live from Hulaween at Suwannee Music Park, FL Set Opener", + "date": "2025-11-02", + "venue": null, + "type": "song", + "publishedAt": "2025-11-02T22:25:55Z" + }, + { + "videoId": "_1LA3AA0n1k", + "title": "Front seat to the show \ud83d\ude0e #richmond #goosetheband #liveperformance", + "date": "2025-10-02", + "venue": null, + "type": "song", + "publishedAt": "2025-10-14T20:12:53Z" + }, + { + "videoId": "RtHMhQ5SWdI", + "title": "In Philly they call this song \"Madhujawn\" #goosetheband #philly #falltour", + "date": "2025-10-04", + "venue": null, + "type": "song", + "publishedAt": "2025-10-13T17:58:35Z" + }, + { + "videoId": "4NndTlvMgtM", + "title": "Not giving up, not today, not today \ud83e\udee0 #goosetheband #livemusic #chicago", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-10-10T21:00:09Z" + }, + { + "videoId": "2AILXcfbW1g", + "title": "Soaring over the waterfront \ud83d\udeeb #goosetheband #burlington", + "date": "2025-09-14", + "venue": null, + "type": "song", + "publishedAt": "2025-10-09T21:00:03Z" + }, + { + "videoId": "OscJSiBDqpI", + "title": "These moderns are growing at an exponential rate\ud83d\udcaa #goosetheband #philly #ontour", + "date": "2025-10-04", + "venue": null, + "type": "song", + "publishedAt": "2025-10-08T20:46:07Z" + }, + { + "videoId": "NZdBcw6OsVk", + "title": "KEEP MY HANDS SEWN ON \ud83d\ude4f #goosetheband #philly #ontour", + "date": "2025-10-04", + "venue": null, + "type": "song", + "publishedAt": "2025-10-07T13:51:36Z" + }, + { + "videoId": "4VNks5r-V8Q", + "title": "Open up your loving arms: I want some, want some \ud83d\ude0e #youspinmerightround #rightround #goosetheband", + "date": "2025-10-04", + "venue": null, + "type": "song", + "publishedAt": "2025-10-06T00:41:26Z" + }, + { + "videoId": "LE3Gx4zURus", + "title": "There's a first time for everything right? \ud83d\ude1c #goosetheband #philly #ontour", + "date": "2025-10-04", + "venue": null, + "type": "song", + "publishedAt": "2025-10-05T18:59:47Z" + }, + { + "videoId": "W0leuzNmHps", + "title": "Goose 10/04/2025 Live from The Mann Philadelphia, PA Set I Opener", + "date": "2025-10-04", + "venue": null, + "type": "song", + "publishedAt": "2025-10-05T00:05:40Z" + }, + { + "videoId": "7CewdnPWyfE", + "title": "Oh ah wee-oh aweem away \ud83e\udd81 Thanks Richmond! #goosetheband #lionsleepstonight #cover #ontour", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-10-04T22:21:11Z" + }, + { + "videoId": "RZhxBpJ8zGY", + "title": "Goose 10/03/2025 Live from Allianz Amphitheater Richmond, VA Set I Opener", + "date": "2025-10-03", + "venue": null, + "type": "song", + "publishedAt": "2025-10-04T12:14:04Z" + }, + { + "videoId": "1k7Qt2f2qqA", + "title": "Sinnergoontz to the moon \ud83d\ude80 #goosetheband #ontour #richmond", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-10-04T00:07:35Z" + }, + { + "videoId": "iDqtU50vljk", + "title": "Richmond we have lift off \ud83d\udeeb #goosetheband #richmond #ontour", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-10-03T20:57:18Z" + }, + { + "videoId": "jUbRIFuQW-o", + "title": "Goose - Red Bird \u2192 Atlas Dogs - 10/2/25 Richmond, VA", + "date": "2025-10-02", + "venue": "Red Bird \u2192 Atlas Dogs - 10/2/25 Richmond, VA", + "type": "sequence", + "publishedAt": "2025-10-03T15:39:26Z" + }, + { + "videoId": "ZVDsFWjUcbc", + "title": "Goose 10/02/2025 Live from Allianz Amphitheater Richmond, VA Set I Opener", + "date": "2025-10-02", + "venue": null, + "type": "song", + "publishedAt": "2025-10-03T12:07:57Z" + }, + { + "videoId": "dxdbM1HOitc", + "title": "\u26a1running through my veins, every time I look at you \ud83e\udd79 #davidgray #goosetheband #ohio #cover", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-10-02T19:20:15Z" + }, + { + "videoId": "pOTsgfQ15no", + "title": "Why am I crying in the club rn \ud83e\udd72#goosetheband #ontour #ohio", + "date": "2025-09-30", + "venue": null, + "type": "song", + "publishedAt": "2025-10-01T21:01:03Z" + }, + { + "videoId": "E9SsJGbbb14", + "title": "Goose 9/30/2025 Live from KEMBA Live! Columbus, OH Set I Opener", + "date": "2025-09-30", + "venue": null, + "type": "song", + "publishedAt": "2025-10-01T11:54:53Z" + }, + { + "videoId": "bN2PTpM7zBI", + "title": "Come find me where skyline meets the road \ud83d\udc51 #goosetheband #ontour", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-09-30T21:00:43Z" + }, + { + "videoId": "NrW5QLemCzc", + "title": "Industrial Synth + Power Chords = \ud83d\udcaa #madisonwisconsin #goosetheband #ontour", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-09-30T17:54:56Z" + }, + { + "videoId": "aU-8SpzREGc", + "title": "too far from home \ud83d\udccd #goosetheband #ontour #hollywoodnights #charlotte", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-09-29T17:38:04Z" + }, + { + "videoId": "WKM4peOb4H0", + "title": "Tst tst tst testing is this thing on? \ud83e\udd2a #ontour #goosetheband #bts", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-09-29T12:56:29Z" + }, + { + "videoId": "7Dh3-p_yH3s", + "title": "Wish we could stay a little longer \ud83e\udef6 #ontour #goosetheband", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-09-28T21:00:07Z" + }, + { + "videoId": "-3jkrMpCuXA", + "title": "Goose 9/27/2025 Live from PNC Music Pavilion Charlotte, NC Set I Opener", + "date": "2025-09-27", + "venue": null, + "type": "song", + "publishedAt": "2025-09-28T12:12:01Z" + }, + { + "videoId": "dvB3QwganvQ", + "title": "Goose 9/26/2025 Live from Ameris Bank Amphitheatre Alpharetta, GA Set I Opener", + "date": "2025-09-26", + "venue": null, + "type": "song", + "publishedAt": "2025-09-27T12:18:42Z" + }, + { + "videoId": "cANwTDXFSGM", + "title": "New Linkin Park cover incoming? \ud83e\udd13#goosetheband #bts #vlog #linkinpark", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-09-26T12:58:50Z" + }, + { + "videoId": "SNi6na-Pu8Q", + "title": "\u201cState Of The Art\u201d with Jim James! @mymorningjacket #jimjames #mymorningjacket #goose", + "date": "2025-09-24", + "venue": null, + "type": "song", + "publishedAt": "2025-09-25T20:04:54Z" + }, + { + "videoId": "wwxqyhG6Y7M", + "title": "Goose - State Of The Art (A.E.I.O.U) [feat. Jim James] - 9/24/25", + "date": "2025-09-24", + "venue": null, + "type": "song", + "publishedAt": "2025-09-25T14:09:17Z" + }, + { + "videoId": "dBCg4MINlzw", + "title": "Goose 9/24/2025 Live from Louisville Palace Theatre Louisville, KY Set I Opener", + "date": "2025-09-24", + "venue": null, + "type": "song", + "publishedAt": "2025-09-25T00:33:12Z" + }, + { + "videoId": "AgZE-pocmiA", + "title": "Where you gonna run to? \ud83d\udd7a #ontour #louisville #goosetheband", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-09-24T20:23:34Z" + }, + { + "videoId": "iTjzs4hk8ms", + "title": "Goose 9/23/2025 Live from Louisville Palace Theatre Louisville, KY Set I Opener", + "date": "2025-09-23", + "venue": null, + "type": "song", + "publishedAt": "2025-09-24T12:36:04Z" + }, + { + "videoId": "2OaovKQlkS8", + "title": "Turned it up to 11 in Chicago \ud83d\udca5 #ontour #goosetheband #chicago", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-09-22T22:20:23Z" + }, + { + "videoId": "ayI_d54CL38", + "title": "Goose - Tumble - 9/20/25 Chicago, IL", + "date": "2025-09-20", + "venue": "Tumble - 9/20/25 Chicago, IL", + "type": "song", + "publishedAt": "2025-09-22T22:03:13Z" + }, + { + "videoId": "McZixd4l0xY", + "title": "Goose 9/20/2025 Live from Chicago, IL Set I Opener", + "date": "2025-09-20", + "venue": null, + "type": "song", + "publishedAt": "2025-09-21T12:55:18Z" + }, + { + "videoId": "Jx8K4A9Y0WA", + "title": "Dance Party in Michigan \ud83e\udea9 #goose #ontour #michigan", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-09-20T20:40:39Z" + }, + { + "videoId": "oS5MwUo4EdY", + "title": "Much love to the Mt. Joy fam, always a hoot \ud83e\udef6\u201dWhat\u2019s Up\u201d from Madison, WI #mtjoy \u200b\u2060#goose", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-09-20T17:26:34Z" + }, + { + "videoId": "CqKGlD2zt5A", + "title": "Goose 9/19/2025 Live from Sterling Heights, MI Set I Opener", + "date": "2025-09-19", + "venue": null, + "type": "song", + "publishedAt": "2025-09-20T12:00:46Z" + }, + { + "videoId": "Mt23rGy1_OU", + "title": "Goose 9/14/2025 Live from Burlington, VT Set I Opener", + "date": "2025-09-14", + "venue": null, + "type": "song", + "publishedAt": "2025-09-19T12:27:04Z" + }, + { + "videoId": "X_KmLwWBeME", + "title": "Bringin the wubs to the waterfront \ud83d\ude80 Burlington, VT 9.14.25", + "date": "2025-09-14", + "venue": null, + "type": "song", + "publishedAt": "2025-09-18T19:15:37Z" + }, + { + "videoId": "Nkx1IXzJCIc", + "title": "Goose 9/17/2025 Live from Madison, WI Set I Opener", + "date": "2025-09-17", + "venue": null, + "type": "song", + "publishedAt": "2025-09-18T01:09:22Z" + }, + { + "videoId": "-_ETnIMrh1Q", + "title": "Jed Stone from The Gorge 8.31.25 #thegorge #goose #livemusic", + "date": "2025-08-31", + "venue": null, + "type": "song", + "publishedAt": "2025-09-12T14:39:31Z" + }, + { + "videoId": "XnhBHeLDXr8", + "title": "Goose - Jed Stone - 8/31/25 The Gorge, George, WA", + "date": "2025-08-31", + "venue": "Jed Stone - 8/31/25 The Gorge, George, WA", + "type": "song", + "publishedAt": "2025-09-12T14:31:45Z" + }, + { + "videoId": "L9wP9xDSjAE", + "title": "\u201cRoyal\u201d from our new album \u2018Chain Yer Dragon\u2019 at Park City Song Summit! 8.16.2025 #goose #utah", + "date": "2025-08-16", + "venue": null, + "type": "song", + "publishedAt": "2025-09-08T21:00:32Z" + }, + { + "videoId": "2bqF7HJBZHc", + "title": "Goose Acoustic Set at Viva El Gonzo 2025", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-09-07T00:00:05Z" + }, + { + "videoId": "zTWh3IuzsVI", + "title": "Acoustic set from Viva El Gonzo premiering tomorrow at 8PM ET on vivaelgonzo.com #goose #acoustic", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-09-05T16:08:18Z" + }, + { + "videoId": "F3526_8ufBE", + "title": "\u201cYour Direction\u201d in Connecticut 6/29/2025. Fall tour starts next week! #goose #lyrics #connecticut", + "date": "2025-06-29", + "venue": null, + "type": "song", + "publishedAt": "2025-09-04T20:12:13Z" + }, + { + "videoId": "ZxvvxJcPTI4", + "title": "Arcadia with the horns never misses \ud83d\ude45\u200d\u2642\ufe0f @DaveMatthewsBand #goose #davematthewsband #thegorge", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-09-02T15:38:26Z" + }, + { + "videoId": "cah2LuDSLVw", + "title": "Trevor at the stand up bass #goosetheband #bassplayer #studio #behindthesong", + "date": null, + "venue": null, + "type": "documentary", + "publishedAt": "2025-08-27T18:17:30Z" + }, + { + "videoId": "Yl93pFYuwJQ", + "title": "CYD studio time #behindthesong #goosetheband #goose #bts #studio", + "date": null, + "venue": null, + "type": "documentary", + "publishedAt": "2025-08-25T21:00:38Z" + }, + { + "videoId": "KJP79bGjXp8", + "title": "Rehearsing \u201cMadalena\u201d before premiering the song on Fallon #newmusic #backstage", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-08-21T16:27:34Z" + }, + { + "videoId": "VQOVqm5fCXQ", + "title": "A quick scene from \u2018Chain Yer Dragon.\u2019 Thank you for listening! #newmusic", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-08-20T16:42:11Z" + }, + { + "videoId": "QXT3-DFXUFE", + "title": "Goose 8/16/25 Live from Park City Song Summit, Park City UT Set I Opener", + "date": "2025-08-16", + "venue": null, + "type": "song", + "publishedAt": "2025-08-17T13:49:25Z" + }, + { + "videoId": "y3m8u1O4F3w", + "title": "Goose - Turbulence & The Night Rays (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2025-08-14T04:01:16Z" + }, + { + "videoId": "nw7dUSIt1Lg", + "title": "Goose - Echo Of A Rose (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2025-08-14T04:01:02Z" + }, + { + "videoId": "ZZ3FaBno_mM", + "title": "Goose - The Empress of Organos (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2025-08-14T04:00:43Z" + }, + { + "videoId": "ZZzddsbYFYs", + "title": "Goose - Factory Fiction (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2025-08-14T04:00:41Z" + }, + { + "videoId": "WjfQQGI-TXY", + "title": "Goose - ..... (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2025-08-14T04:00:40Z" + }, + { + "videoId": "TRSS-tDSMf0", + "title": "Goose - Hot Love & The Lazy Poet (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2025-08-14T04:00:36Z" + }, + { + "videoId": "JPB6rI-eo8E", + "title": "Goose - Madalena (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2025-08-14T04:00:31Z" + }, + { + "videoId": "AJR2X1QvnjE", + "title": "Goose - Mr. Action (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2025-08-14T04:00:20Z" + }, + { + "videoId": "3MI16H0WzhM", + "title": "Goose - Dr. Darkness (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2025-08-14T04:00:05Z" + }, + { + "videoId": "1JIzpfaiEsc", + "title": "Goose - Rockdale (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2025-08-14T04:00:03Z" + }, + { + "videoId": "2NaEAVVpmOw", + "title": "Goose - Jed Stone (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2025-08-14T04:00:03Z" + }, + { + "videoId": "IzcJL1pWAyE", + "title": "Hungersite in Cleveland! #cleveland #goosetheband #jamband #liveshow", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-08-12T20:12:00Z" + }, + { + "videoId": "5-zPtU8sJB0", + "title": "Silver Rising from New Hampshire this summer. #goosetheband #jamband #liveshow", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-08-11T21:13:18Z" + }, + { + "videoId": "utIfTvZ-prw", + "title": "Goose - Royal (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2025-08-07T04:01:14Z" + }, + { + "videoId": "8ibgMqm05QI", + "title": "Cleveland Into the Myst! 6/19/2025 #goose #goosetheband #cleveland #jamband #liveshow", + "date": "2025-06-19", + "venue": null, + "type": "song", + "publishedAt": "2025-08-06T19:43:34Z" + }, + { + "videoId": "DwlJ-sPJiTw", + "title": "\u201cTurn on Your Lovelight\u201d in Vegas from summer 2025 #cover #lovelight #jamband #goosetheband", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-08-05T15:29:21Z" + }, + { + "videoId": "wPpdTi9tziU", + "title": "Everything Must Go from Viva El Gonzo 2025 #goose #jamband #vivaelgonzo", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-07-29T19:34:43Z" + }, + { + "videoId": "bhYSt97fdZ4", + "title": "Torero in Cleveland! 6/19/2025 #gooseband #jamband #summerconcerts #cleveland", + "date": "2025-06-19", + "venue": null, + "type": "song", + "publishedAt": "2025-07-25T16:05:36Z" + }, + { + "videoId": "dLEFEsEV1rM", + "title": "RIP Ozzy. War Pigs featuring Will Forte from October 2024 at the Troubadour. #ozzyosbourne", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-07-23T21:53:12Z" + }, + { + "videoId": "tFBCQrmlyCo", + "title": "Psycho Killer cover in Denver 6/6/2025 #talkingheads #cover #gooseband", + "date": "2025-06-06", + "venue": null, + "type": "song", + "publishedAt": "2025-07-22T14:07:34Z" + }, + { + "videoId": "70qpw2-aFOw", + "title": "It\u2019s somewhere we know #msg #gooseband #dustinhoffman #lyrics #concerts #jamband", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-07-17T16:52:42Z" + }, + { + "videoId": "aVjiWxB1j4M", + "title": "Thatch from the early days of summer tour in Bend, OR - 5/30/2025 #gooseband #jamband #show", + "date": "2025-05-30", + "venue": null, + "type": "song", + "publishedAt": "2025-07-16T21:01:26Z" + }, + { + "videoId": "DNI3mvAU-Kc", + "title": "All I Need in Connecticut! 6/29/2025 #gooseband #jamband #summerconcerts #connecticut", + "date": "2025-06-29", + "venue": null, + "type": "song", + "publishedAt": "2025-07-15T20:01:43Z" + }, + { + "videoId": "FQd6pDRBCGA", + "title": "Watch our full MSG performance plus a behind-the-scenes documentary on our channel now! #msg", + "date": null, + "venue": null, + "type": "documentary", + "publishedAt": "2025-07-14T19:59:41Z" + }, + { + "videoId": "Z1zqgtoGJT8", + "title": "An Inside Look at our MSG Debut", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-07-12T00:00:06Z" + }, + { + "videoId": "-_j9zohZQwE", + "title": "Tumble at The Garden - 6/28/2025 #goose #msg #jamband #summerconcerts", + "date": "2025-06-28", + "venue": "The Garden", + "type": "song", + "publishedAt": "2025-07-10T19:02:31Z" + }, + { + "videoId": "7SNmgGunias", + "title": "Summer Tour Vlog Part 2 is premiering now! #vlog #goose #summertour", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-07-08T14:58:42Z" + }, + { + "videoId": "kcRUjb1Towg", + "title": "Goose Summer Tour 2025 Vlog pt II", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-07-08T14:57:01Z" + }, + { + "videoId": "ZtgRo1bVNYM", + "title": "Hungersite at Mountain Jam - 6/22/2025 #goose #jam #summertour #livemusic", + "date": "2025-06-22", + "venue": "Mountain Jam", + "type": "song", + "publishedAt": "2025-07-07T20:12:57Z" + }, + { + "videoId": "ZTsswP8lroo", + "title": "Goose - Hungersite - 6/22/25 Mountain Jam", + "date": "2025-06-22", + "venue": null, + "type": "song", + "publishedAt": "2025-07-07T20:01:34Z" + }, + { + "videoId": "Jl1rk_xxNg8", + "title": "Madison Square Garden (6/28/2025) full performance out now! #goose #madisonsquaregarden", + "date": "2025-06-28", + "venue": null, + "type": "song", + "publishedAt": "2025-07-02T23:13:06Z" + }, + { + "videoId": "YmV1TF4y2BE", + "title": "Goose Live at Madison Square Garden", + "date": null, + "venue": "Madison Square Garden", + "type": "full_show", + "publishedAt": "2025-07-02T23:00:08Z" + }, + { + "videoId": "JIXfH6Ah9Y8", + "title": "Goose 6/29/2025 Westville Music Bowl, New Haven, CT", + "date": "2025-06-29", + "venue": null, + "type": "song", + "publishedAt": "2025-06-30T11:11:07Z" + }, + { + "videoId": "00hT31Yir1g", + "title": "Animal feat. Stuart Bogie \ud83c\udfb7 Andrew McGovern \ud83c\udfba and Dave Nelson \ud83d\udc18 at MSG! #goose #jam #liveband", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-06-29T21:52:47Z" + }, + { + "videoId": "sgfFtjAwSeM", + "title": "Goose - Animal - 6/28/25 Madison Square Garden, New York, NY", + "date": "2025-06-28", + "venue": "Animal - 6/28/25 Madison Square Garden, New York, NY", + "type": "song", + "publishedAt": "2025-06-29T18:20:10Z" + }, + { + "videoId": "6Kv4zDdtnlw", + "title": "Goose 6/28/2025 Live From Madison Square Garden, New York, NY Set I Opener", + "date": "2025-06-28", + "venue": null, + "type": "song", + "publishedAt": "2025-06-29T12:13:43Z" + }, + { + "videoId": "G9IrdMahQJ8", + "title": "Goose 6/27/2025 Live from Bank of New Hampshire Pavilion, Gilford, NH Set I Opener", + "date": "2025-06-27", + "venue": null, + "type": "song", + "publishedAt": "2025-06-28T11:05:39Z" + }, + { + "videoId": "feOOgSGa09I", + "title": "Rosewood Heart feat. Mikaela Davis at Mountain Jam last night #livemusic #jam", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-06-23T14:05:10Z" + }, + { + "videoId": "XtajDmJTByQ", + "title": "Goose - Rosewood Heart (feat. Mikaela Davis) - 6/22/25 Mountain Jam", + "date": "2025-06-22", + "venue": null, + "type": "song", + "publishedAt": "2025-06-23T14:02:46Z" + }, + { + "videoId": "6ztAeiLNM3k", + "title": "Goose 6/21/2025 Live from CMAC, Canandaigua, NY Set I Opener", + "date": "2025-06-21", + "venue": null, + "type": "song", + "publishedAt": "2025-06-22T12:02:36Z" + }, + { + "videoId": "moTYuVgilp4", + "title": "Amongster by Poli\u00e7a @thisispolica - Cleveland, OH - 6/20/25 #livemusic #cover", + "date": "2025-06-20", + "venue": null, + "type": "song", + "publishedAt": "2025-06-21T15:13:02Z" + }, + { + "videoId": "laULRNr_5r4", + "title": "Goose - Amongster - 6/20/25 Cleveland, OH", + "date": "2025-06-20", + "venue": "Amongster - 6/20/25 Cleveland, OH", + "type": "song", + "publishedAt": "2025-06-21T15:10:54Z" + }, + { + "videoId": "E8eJorS7wUU", + "title": "Goose 6/20/2025 Live from Jacobs Pavilion, Cleveland, OH Set I Opener", + "date": "2025-06-20", + "venue": null, + "type": "song", + "publishedAt": "2025-06-21T12:18:32Z" + }, + { + "videoId": "D_Qj6oT0C0o", + "title": "Goose 6/19/2025 Live from Jacobs Pavilion, Cleveland, OH Set I Opener", + "date": "2025-06-19", + "venue": null, + "type": "song", + "publishedAt": "2025-06-20T12:03:17Z" + }, + { + "videoId": "qqL_2PwX7tQ", + "title": "Western Sun in Wilmington \u2600\ufe0f #livemusic #jam #music", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-06-18T14:16:16Z" + }, + { + "videoId": "5kIRHug3ZoU", + "title": "Goose - A Western Sun - 6/17/25 Wilmington, NC", + "date": "2025-06-17", + "venue": "A Western Sun - 6/17/25 Wilmington, NC", + "type": "song", + "publishedAt": "2025-06-18T13:21:02Z" + }, + { + "videoId": "qw0jsrQjVTU", + "title": "Goose 6/17/2025 Live from Live Oak Pavilion, Wilmington, NC Set I Opener", + "date": "2025-06-17", + "venue": null, + "type": "song", + "publishedAt": "2025-06-18T00:10:16Z" + }, + { + "videoId": "bm9mZgptTVw", + "title": "Goose - Set Two - 6/7/25 Greenwood Village, CO", + "date": "2025-06-07", + "venue": "Set Two - 6/7/25 Greenwood Village, CO", + "type": "song", + "publishedAt": "2025-06-14T02:30:07Z" + }, + { + "videoId": "w7DhHtA6mO8", + "title": "Indy Tumble - 6/12/25 #livemusic #jam #concert", + "date": "2025-06-12", + "venue": null, + "type": "song", + "publishedAt": "2025-06-13T15:59:48Z" + }, + { + "videoId": "vhJpu8QuaXE", + "title": "Goose - Tumble - 6/12/25 Indianpolis, IN", + "date": "2025-06-12", + "venue": "Tumble - 6/12/25 Indianpolis, IN", + "type": "song", + "publishedAt": "2025-06-13T15:35:32Z" + }, + { + "videoId": "c6a0irrYqKY", + "title": "Goose 6/12/2025 Live from Everwise Amphitheater, Indianapolis, IN Set I Opener", + "date": "2025-06-12", + "venue": null, + "type": "song", + "publishedAt": "2025-06-12T23:59:06Z" + }, + { + "videoId": "KQuWKsPtvA0", + "title": "Vegas Iguana \ud83e\udd8e \ud83e\udd18 #livemusic #jam #music", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-06-12T19:23:24Z" + }, + { + "videoId": "GxffLJdErPM", + "title": "Goose 6/11/2025 Live from The Factory, Chesterfield, MO Set I Opener", + "date": "2025-06-11", + "venue": null, + "type": "song", + "publishedAt": "2025-06-12T13:34:50Z" + }, + { + "videoId": "shEm96Y1dYw", + "title": "\u2060@Parcels : time : NBA playoffs #summer2025 #tourvlog #nbaplayoffs", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-06-11T20:54:12Z" + }, + { + "videoId": "-Cp1YdL8vW4", + "title": "Goose Summer Tour 2025 Vlog pt I", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-06-11T19:11:12Z" + }, + { + "videoId": "ynSD9iRWUpk", + "title": "Goose 6/10/2025 Live from The Factory, Chesterfield, MO Set I Opener", + "date": "2025-06-10", + "venue": null, + "type": "song", + "publishedAt": "2025-06-11T01:24:17Z" + }, + { + "videoId": "ZGuWZJjUZ08", + "title": "Echo of a Rose\u27a1\ufe0fPsycho Killer - 6/6/25 #jam #cover #livemusic #music", + "date": "2025-06-06", + "venue": null, + "type": "song", + "publishedAt": "2025-06-10T18:58:39Z" + }, + { + "videoId": "24uGUTuTJdU", + "title": "Goose - Echo of a Rose \u2192 Psycho Killer - 6/6/25 Greenwood Village, CO", + "date": "2025-06-06", + "venue": "Echo of a Rose \u2192 Psycho Killer - 6/6/25 Greenwood Village, CO", + "type": "sequence", + "publishedAt": "2025-06-10T18:00:10Z" + }, + { + "videoId": "HhNPh2BUikM", + "title": "Goose 6/7/2025 Live fromFiddler\u2019s Green Amphitheatre, Greenwood Village, CO Set I Opener", + "date": "2025-06-07", + "venue": null, + "type": "song", + "publishedAt": "2025-06-08T14:14:29Z" + }, + { + "videoId": "kY7S0UYteAI", + "title": "Goose 6/6/2025 Live from Fiddler\u2019s Green Amphitheatre, Greenwood Village, CO Set I Opener", + "date": "2025-06-06", + "venue": null, + "type": "song", + "publishedAt": "2025-06-07T02:14:07Z" + }, + { + "videoId": "aTRh6eTgo0c", + "title": "Dripfield - Phoenix, AZ - 6/4/25 #livemusic #summertour #music", + "date": "2025-06-04", + "venue": null, + "type": "song", + "publishedAt": "2025-06-06T00:20:04Z" + }, + { + "videoId": "eWLYzXeAI3k", + "title": "Goose - Dripfield - 6/4/25 Phoenix, AZ", + "date": "2025-06-04", + "venue": "Dripfield - 6/4/25 Phoenix, AZ", + "type": "song", + "publishedAt": "2025-06-05T20:59:20Z" + }, + { + "videoId": "0w0EpsloiC8", + "title": "Goose 6/4/2025 Live from Arizona Financial Theatre, Phoenix, AZ Set I Opener", + "date": "2025-06-04", + "venue": null, + "type": "song", + "publishedAt": "2025-06-05T15:14:59Z" + }, + { + "videoId": "QAQ5m-DO-8c", + "title": "Goose 6/3/2025 Live from Brooklyn Bowl, Las Vegas, NV Set I Opener", + "date": "2025-06-03", + "venue": null, + "type": "song", + "publishedAt": "2025-06-04T15:11:46Z" + }, + { + "videoId": "USLV0mZClgA", + "title": "Rosewood Heart Live in Boise, ID 6/1/25 #music #guitar #summertour", + "date": "2025-06-01", + "venue": null, + "type": "song", + "publishedAt": "2025-06-02T13:51:36Z" + }, + { + "videoId": "9KurLT7_PdY", + "title": "Goose - Rosewood Heart - 6/1/25 Boise, ID", + "date": "2025-06-01", + "venue": "Rosewood Heart - 6/1/25 Boise, ID", + "type": "song", + "publishedAt": "2025-06-02T13:41:55Z" + }, + { + "videoId": "M1qHpJJMD9E", + "title": "Goose 6/1/2025 Live from Idaho Botanical Garden, Boise, ID Set I Opener", + "date": "2025-06-01", + "venue": null, + "type": "song", + "publishedAt": "2025-06-02T13:01:28Z" + }, + { + "videoId": "vGSA_TJDMnU", + "title": "Cotter Ellis! Moby Dick! \ud83d\ude4c #cover #livemusic #ledzeppelin", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-06-01T21:11:10Z" + }, + { + "videoId": "O08N1antrK4", + "title": "Goose - Moby Dick - 5/31/25 Spokane, WA", + "date": "2025-05-31", + "venue": "Moby Dick - 5/31/25 Spokane, WA", + "type": "song", + "publishedAt": "2025-06-01T18:20:19Z" + }, + { + "videoId": "gEPBbYZouhc", + "title": "Goose 5/31/2025 Live from Spokane Pavilion, Spokane, WA Set I Opener", + "date": "2025-05-31", + "venue": null, + "type": "song", + "publishedAt": "2025-06-01T14:06:43Z" + }, + { + "videoId": "5OuuPVFhZfU", + "title": "Goose 5/30/2025 Live from Hayden Homes Amphitheater, Bend, OR Set I Opener", + "date": "2025-05-30", + "venue": null, + "type": "song", + "publishedAt": "2025-05-31T14:12:46Z" + }, + { + "videoId": "XoSFsfod6bU", + "title": "Trust the creative process. \ud83c\udfab: goosetheband.com/tour #music #tourvlog #chocolatemilk", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-05-30T14:41:23Z" + }, + { + "videoId": "ub5Nt_Dz4nQ", + "title": "Goose 5/28/2025 Live from The Masonic, San Francisco, CA Set I Opener", + "date": "2025-05-28", + "venue": null, + "type": "song", + "publishedAt": "2025-05-29T15:00:28Z" + }, + { + "videoId": "i5BN1jGlAcQ", + "title": "Dustin Hoffman on SF night 2! Click link to watch full performance. #music #livemusic #concert", + "date": null, + "venue": null, + "type": "full_show", + "publishedAt": "2025-05-29T14:13:25Z" + }, + { + "videoId": "giYoDlziqFQ", + "title": "Goose - Dustin Hoffman \u2192 Big Modern! - 5/28/25 San Francisco, CA", + "date": "2025-05-28", + "venue": "Dustin Hoffman \u2192 Big Modern! - 5/28/25 San Francisco, CA", + "type": "sequence", + "publishedAt": "2025-05-29T08:16:17Z" + }, + { + "videoId": "iyt2H551hhk", + "title": "Goose - This Old Sea \u2192 Atlas Dogs - 5/27/25 San Francisco, CA", + "date": "2025-05-27", + "venue": "This Old Sea \u2192 Atlas Dogs - 5/27/25 San Francisco, CA", + "type": "sequence", + "publishedAt": "2025-05-28T23:16:52Z" + }, + { + "videoId": "GRnz7EHZ9uk", + "title": "Goose 5/27/2025 Live from The Masonic, San Francisco, CA Set I Opener", + "date": "2025-05-27", + "venue": null, + "type": "song", + "publishedAt": "2025-05-28T16:57:54Z" + }, + { + "videoId": "tLcTjeoGu4s", + "title": "Goose - Silver Rising - Bottlerock, Napa, CA", + "date": null, + "venue": "Silver Rising - Bottlerock, Napa, CA", + "type": "song", + "publishedAt": "2025-05-26T17:56:49Z" + }, + { + "videoId": "g1gZijc73AI", + "title": "Goose - Chateau Sessions pt III", + "date": null, + "venue": null, + "type": "session", + "publishedAt": "2025-05-25T01:00:06Z" + }, + { + "videoId": "Dz9yemp8gFU", + "title": "Chateau Sessions pt III drops tonight at 9pm est \u26a1\ufe0f", + "date": null, + "venue": null, + "type": "session", + "publishedAt": "2025-05-24T17:43:42Z" + }, + { + "videoId": "OEMA3JJN1rU", + "title": "Goose - Your Direction - 5/8/25 Viva El Gonzo, MX", + "date": "2025-05-08", + "venue": "Your Direction - 5/8/25 Viva El Gonzo, MX", + "type": "song", + "publishedAt": "2025-05-21T18:32:58Z" + }, + { + "videoId": "pVW2Xrv5ntw", + "title": "Goose - Empress \u2192 fast:slow \u2192 Empress - 5/9/25 Viva El Gonzo, MX", + "date": "2025-05-09", + "venue": "Empress \u2192 fast:slow \u2192 Empress - 5/9/25 Viva El Gonzo, MX", + "type": "sequence", + "publishedAt": "2025-05-21T18:32:55Z" + }, + { + "videoId": "jh_JvB7oZzE", + "title": "Goose x Dawes - Atlas Dogs \u2192 Rockdale - 5/9/25 Viva El Gonzo, MX", + "date": "2025-05-09", + "venue": "Atlas Dogs \u2192 Rockdale - 5/9/25 Viva El Gonzo, MX", + "type": "sequence", + "publishedAt": "2025-05-15T17:00:37Z" + }, + { + "videoId": "IQfwSb6DeZU", + "title": "\u201cTorero\u201d debut at Viva El Gonzo N1 \ud83d\ude80", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-05-13T16:46:26Z" + }, + { + "videoId": "U1qMmnfRCzk", + "title": "Goose 5/10/25 Live from Viva El Gonzo, San Jose del Cabo, Mexico Set I Opener", + "date": "2025-05-10", + "venue": null, + "type": "song", + "publishedAt": "2025-05-11T16:45:23Z" + }, + { + "videoId": "X_2v1lKJiN8", + "title": "Goose 5/9/25 Live from Viva El Gonzo, San Jose del Cabo, Mexico Set I Opener", + "date": "2025-05-09", + "venue": null, + "type": "song", + "publishedAt": "2025-05-10T16:47:52Z" + }, + { + "videoId": "HCbi8dIV_ac", + "title": "Goose 5/8/25 Live from Viva El Gonzo, San Jose del Cabo, Mexico Set Opener", + "date": "2025-05-08", + "venue": null, + "type": "song", + "publishedAt": "2025-05-09T04:49:16Z" + }, + { + "videoId": "8soKtCQ4PNg", + "title": "Thanks to @YouTubeMusic for the support on 'Everything Must Go' - our new album out now!", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-04-28T17:35:00Z" + }, + { + "videoId": "VoQieVDPnJA", + "title": "'Everything Must Go' official music video is out now! New album streaming everywhere now.", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-04-25T18:31:55Z" + }, + { + "videoId": "M7Dk_Ls9UT4", + "title": "Goose - Everything Must Go (Official Video)", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-04-25T14:00:06Z" + }, + { + "videoId": "ybcUYXbRaO4", + "title": "Goose - Dustin Hoffman (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2025-04-25T04:01:11Z" + }, + { + "videoId": "iUm0c5iVvYY", + "title": "Goose - Feel It Now (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2025-04-25T04:01:01Z" + }, + { + "videoId": "OPqk0J9AFf0", + "title": "Goose - How It Ends (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2025-04-25T04:00:35Z" + }, + { + "videoId": "MUpW7MN17DA", + "title": "Goose - Silver Rising (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2025-04-25T04:00:32Z" + }, + { + "videoId": "A-ww_Lcfatc", + "title": "Goose - Iguana Song (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2025-04-25T04:00:21Z" + }, + { + "videoId": "KqTk186Tnec", + "title": "Goose - Animal (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2025-04-25T04:00:21Z" + }, + { + "videoId": "H1ZxljfyLJQ", + "title": "Goose - Red Bird (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2025-04-25T04:00:19Z" + }, + { + "videoId": "4TUjlAgfvyg", + "title": "Goose - California Magic (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2025-04-25T04:00:10Z" + }, + { + "videoId": "1V_9mIFdrg0", + "title": "Goose - Atlas Dogs (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2025-04-25T04:00:01Z" + }, + { + "videoId": "fGrtY1-Z_UE", + "title": "Goose - Thatch - 2/15/25 Grand Rapids, MI", + "date": "2025-02-15", + "venue": "Thatch - 2/15/25 Grand Rapids, MI", + "type": "song", + "publishedAt": "2025-04-14T21:59:43Z" + }, + { + "videoId": "knFCidcRjBs", + "title": "Goose - Thatch (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2025-04-08T04:00:45Z" + }, + { + "videoId": "BprxPSdFubE", + "title": "New Single \u201cYour Direction\u201d is available now on all streaming platforms! \ud83c\udfa7", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-04-01T19:31:36Z" + }, + { + "videoId": "LoJVGpmuwm0", + "title": "Goose - Your Direction (Official Music Video)", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-03-28T12:35:05Z" + }, + { + "videoId": "ETkvPSMBWnI", + "title": "Our full performance of N2 in Milwaukee (2/7/25) is live now! \u2764\ufe0f\u200d\ud83d\udd25", + "date": "2025-02-07", + "venue": null, + "type": "song", + "publishedAt": "2025-03-17T18:25:14Z" + }, + { + "videoId": "BQSavJ-sULs", + "title": "Goose Live in Milwaukee Night 1", + "date": null, + "venue": null, + "type": "full_show", + "publishedAt": "2025-03-16T23:00:06Z" + }, + { + "videoId": "o6AtArJPgLs", + "title": "Goose Live in Milwaukee Night 2", + "date": null, + "venue": null, + "type": "full_show", + "publishedAt": "2025-03-15T23:00:06Z" + }, + { + "videoId": "pofWh27tylI", + "title": "\u201cLead Up\u201d from N2 at Miller High Life Theatre in Milwaukee \ud83c\udf19 Stream \u201cLead Up\u201d out NOW!", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-03-03T15:01:12Z" + }, + { + "videoId": "QONmrpI3JwM", + "title": "Goose Live in Milwaukee Night 3", + "date": null, + "venue": null, + "type": "full_show", + "publishedAt": "2025-03-03T00:00:05Z" + }, + { + "videoId": "2IDk8unLyIc", + "title": "Goose Live in Grand Rapids Night 1", + "date": null, + "venue": null, + "type": "full_show", + "publishedAt": "2025-03-02T00:00:05Z" + }, + { + "videoId": "udGQURdBxWI", + "title": "New Single \u201cLead Up\u201d from our upcoming studio album EVERYTHING MUST GO is available now!", + "date": null, + "venue": null, + "type": "session", + "publishedAt": "2025-02-28T23:30:37Z" + }, + { + "videoId": "LVbTSdz4jEE", + "title": "Viva El Gonzo Primovera Tours", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-02-27T18:54:19Z" + }, + { + "videoId": "RnwzffaFWGw", + "title": "Goose - Lead Up (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2025-02-25T05:00:25Z" + }, + { + "videoId": "K9anuXzVyHE", + "title": "Goose Live in Grand Rapids Night 2", + "date": "2025-02-14", + "venue": null, + "type": "full_show", + "publishedAt": "2025-02-24T00:00:06Z" + }, + { + "videoId": "BJ91Srnl2zs", + "title": "Goose Live in Grand Rapids Night 3", + "date": "2025-02-15", + "venue": null, + "type": "full_show", + "publishedAt": "2025-02-23T00:00:07Z" + }, + { + "videoId": "1o4tv956zgk", + "title": "Goose - 726 / Madhuvan - 2/15/25 Grand Rapids, MI", + "date": "2025-02-15", + "venue": "726 / Madhuvan - 2/15/25 Grand Rapids, MI", + "type": "song", + "publishedAt": "2025-02-20T23:02:30Z" + }, + { + "videoId": "_PN8Bu7xQoI", + "title": "Goose 2/15/25 Live from 20 Monroe, Grand Rapids, MI Set I Opener", + "date": "2025-02-15", + "venue": null, + "type": "song", + "publishedAt": "2025-02-16T13:13:46Z" + }, + { + "videoId": "VHcEwpcUstc", + "title": "Goose 2/14/25 Live from 20 Monroe, Grand Rapids, MI Set I Opener", + "date": "2025-02-14", + "venue": null, + "type": "song", + "publishedAt": "2025-02-15T13:15:21Z" + }, + { + "videoId": "hZ01whwxQ84", + "title": "Goose 2/13/25 Live from 20 Monroe, Grand Rapids, MI Set I Opener", + "date": "2025-02-13", + "venue": null, + "type": "song", + "publishedAt": "2025-02-14T13:09:39Z" + }, + { + "videoId": "K2UbOTtvV78", + "title": "Goose - Rosewood Heart - 2/11/25 Toronto, ON, CA", + "date": "2025-02-11", + "venue": "Rosewood Heart - 2/11/25 Toronto, ON, CA", + "type": "song", + "publishedAt": "2025-02-13T23:04:01Z" + }, + { + "videoId": "QhX97HmbOdE", + "title": "Goose 2/11/25 Live from History, Toronto, ON Set I Opener", + "date": "2025-02-11", + "venue": null, + "type": "song", + "publishedAt": "2025-02-12T13:13:53Z" + }, + { + "videoId": "v9FC2ruOexI", + "title": "Goose - Everything Must Go - 2/8/25 Milwaukee, WI", + "date": "2025-02-08", + "venue": "Everything Must Go - 2/8/25 Milwaukee, WI", + "type": "song", + "publishedAt": "2025-02-11T18:40:10Z" + }, + { + "videoId": "5Z2kUXvXDxk", + "title": "Goose - Borne \u2192 Hungersite \u2192 Dripfield - 2/8/25 Milwaukee, WI", + "date": "2025-02-08", + "venue": "Borne \u2192 Hungersite \u2192 Dripfield - 2/8/25 Milwaukee, WI", + "type": "sequence", + "publishedAt": "2025-02-11T18:03:55Z" + }, + { + "videoId": "RMV1dIBObv0", + "title": "Goose 2/10/25 Live from History, Toronto, ON Set I Opener", + "date": "2025-02-10", + "venue": null, + "type": "song", + "publishedAt": "2025-02-11T01:09:58Z" + }, + { + "videoId": "lnqwziesfq4", + "title": "Goose 2/8/25 Live from Miller High Life Theatre, Milwaukee, WI Set I Opener", + "date": "2025-02-08", + "venue": null, + "type": "song", + "publishedAt": "2025-02-09T14:48:29Z" + }, + { + "videoId": "hCLfFRdPXtM", + "title": "Goose - Madhuvan / Red Bird - 2/7/25 Milwaukee, WI", + "date": "2025-02-07", + "venue": "Madhuvan / Red Bird - 2/7/25 Milwaukee, WI", + "type": "song", + "publishedAt": "2025-02-08T20:04:42Z" + }, + { + "videoId": "QqnjgnHFH70", + "title": "Goose Live Stream", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-02-08T18:22:43Z" + }, + { + "videoId": "tvzpd5OS-qA", + "title": "\u201cGive It Time\u201d is out now on all streaming platforms \ud83c\udf19", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-02-05T20:00:40Z" + }, + { + "videoId": "ne6E-fNpOW0", + "title": "The Official Music Video for \"Give It Time\" is out now!", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-01-31T17:15:27Z" + }, + { + "videoId": "DF2QKZ823HY", + "title": "Goose - Give It Time (Official Video)", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-01-31T17:00:06Z" + }, + { + "videoId": "3LVmFJ_SuKs", + "title": "Our new single \u201cGive It Time\u201d is out NOW on all streaming platforms \ud83c\udf19", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2025-01-29T23:55:01Z" + }, + { + "videoId": "h0Q6d50BqvE", + "title": "Goose New Year's Eve 2024", + "date": "2024-12-31", + "venue": null, + "type": "song", + "publishedAt": "2025-01-06T00:00:06Z" + }, + { + "videoId": "zSWwrPNnU_I", + "title": "Goose Fall Tour Vlog pt II", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-12-27T01:00:06Z" + }, + { + "videoId": "ywRdYoGdaY8", + "title": "Goosemas Bingo Night 2", + "date": "2024-12-14", + "venue": null, + "type": "full_show", + "publishedAt": "2024-12-25T19:00:06Z" + }, + { + "videoId": "qlr2j_WPZts", + "title": "Goosemas Bingo Night 1", + "date": "2024-12-13", + "venue": null, + "type": "full_show", + "publishedAt": "2024-12-24T23:00:06Z" + }, + { + "videoId": "qpU61qb0024", + "title": "Goose - Help/Slip Franklins - Goosemas Bingo 2024", + "date": "2024-12-14", + "venue": null, + "type": "song", + "publishedAt": "2024-12-19T17:23:13Z" + }, + { + "videoId": "vS39jwZkWAw", + "title": "D&B&Flamingos \ud83e\udda9\ud83e\udda9\ud83e\udda9 Full video is up now! \u2728", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-12-18T17:34:22Z" + }, + { + "videoId": "7ZUQyFMqHi0", + "title": "Goose - One In, One Out \u2192 D&B&Flamingos \u2192 Rockdale - Goosemas Bingo 2024", + "date": "2024-12-14", + "venue": null, + "type": "sequence", + "publishedAt": "2024-12-16T04:55:34Z" + }, + { + "videoId": "SH_vXlKckBk", + "title": "Goose - Hungersite \u2192 Flodown - Goosemas Bingo 2024", + "date": "2024-12-13", + "venue": null, + "type": "sequence", + "publishedAt": "2024-12-14T20:24:55Z" + }, + { + "videoId": "lBRH2PmTl9s", + "title": "Goose - Kashmir - Goosemas Bingo 2024", + "date": "2024-12-13", + "venue": null, + "type": "song", + "publishedAt": "2024-12-14T07:28:24Z" + }, + { + "videoId": "Sy4AxXHS8KI", + "title": "\u2026I\u2019m just fine \ud83d\udd7a Arcadia live from MSG", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-12-10T19:00:14Z" + }, + { + "videoId": "I8j--d8BcTM", + "title": "Don\u2019t Do It w/ Susan Tedeschi and Derek Trucks \ud83e\udd2f", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-12-09T19:46:59Z" + }, + { + "videoId": "OxKBt-vL1Fo", + "title": "Goosemas 2024: Lucky Lou Explains Goosemas Bingo", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-12-06T18:30:06Z" + }, + { + "videoId": "-9NFb2tz3w4", + "title": "Goose Live at the St. Augustine Amphitheatre 11/1/24", + "date": "2024-11-01", + "venue": "the St. Augustine Amphitheatre 11/1/24", + "type": "full_show", + "publishedAt": "2024-11-30T02:25:06Z" + }, + { + "videoId": "-Og1ccAqKro", + "title": "Goose Live in Cincinnati 2024 (Night 3)", + "date": "2024-11-10", + "venue": null, + "type": "full_show", + "publishedAt": "2024-11-29T23:10:06Z" + }, + { + "videoId": "WmBI8Gvh0-o", + "title": "Goose Live in Cincinnati 2024 (Night 2)", + "date": "2024-11-09", + "venue": null, + "type": "full_show", + "publishedAt": "2024-11-29T19:50:06Z" + }, + { + "videoId": "qqPM6oFkaz4", + "title": "Goose Live in Cincinnati 2024 (Night 1)", + "date": "2024-11-08", + "venue": null, + "type": "full_show", + "publishedAt": "2024-11-29T16:40:06Z" + }, + { + "videoId": "FoJtmqSJko0", + "title": "Goose Live at the Greek Theatre 2024", + "date": "2024-09-27", + "venue": "the Greek Theatre 2024", + "type": "full_show", + "publishedAt": "2024-11-29T14:00:06Z" + }, + { + "videoId": "-jIfWmXhKXw", + "title": "Goose - Dripfield - 9/27/24 Greek Theatre, Los Angeles, CA", + "date": "2024-09-27", + "venue": "Dripfield - 9/27/24 Greek Theatre, Los Angeles, CA", + "type": "song", + "publishedAt": "2024-11-22T00:44:51Z" + }, + { + "videoId": "ajsbgcgAyaM", + "title": "Goose - Big Modern! - 11/8/24 Cincinnati, OH", + "date": "2024-11-08", + "venue": "Big Modern! - 11/8/24 Cincinnati, OH", + "type": "song", + "publishedAt": "2024-11-15T17:00:03Z" + }, + { + "videoId": "JWZSk0GfqZ8", + "title": "Goose Stranger Things Halloween", + "date": "2024-10-31", + "venue": null, + "type": "song", + "publishedAt": "2024-11-04T01:00:05Z" + }, + { + "videoId": "j8v8WEU3ORQ", + "title": "Goose - Spin Me Round \u2192 Arrow \u2192 Running Up That Hill \u2192 Arrow - 10/31/24 St. Pete, FL", + "date": "2024-10-31", + "venue": "Hill \u2192 Arrow", + "type": "sequence", + "publishedAt": "2024-11-01T18:50:12Z" + }, + { + "videoId": "vUlUVng1OUQ", + "title": "Goose - Pancakes - 10/29/24 Miami, FL", + "date": "2024-10-29", + "venue": "Pancakes - 10/29/24 Miami, FL", + "type": "song", + "publishedAt": "2024-10-30T19:07:17Z" + }, + { + "videoId": "OHjscbDlils", + "title": "Goose - Brokedown Palace - 10/25/24 Winston-Salem, NC", + "date": "2024-10-25", + "venue": "Brokedown Palace - 10/25/24 Winston-Salem, NC", + "type": "song", + "publishedAt": "2024-10-26T05:21:44Z" + }, + { + "videoId": "JX3dO1VreiY", + "title": "Goose - Into The Myst - 10/24/24 Nashville, TN", + "date": "2024-10-24", + "venue": "Into The Myst - 10/24/24 Nashville, TN", + "type": "song", + "publishedAt": "2024-10-25T16:07:21Z" + }, + { + "videoId": "xwr_VYN0Tpw", + "title": "Goose Fall Tour 2024 Vlog pt I", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-10-23T00:00:06Z" + }, + { + "videoId": "Ns_Uxz4mi7U", + "title": "Viva El Gonzo Informational Video", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-10-03T17:01:22Z" + }, + { + "videoId": "_fjrwM9PoWA", + "title": "Viva El Gonzo", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-10-01T15:21:18Z" + }, + { + "videoId": "SjA9j_m_LkI", + "title": "Goose - Autumn Crossing - 9/28/24 Stanford, CA", + "date": "2024-09-28", + "venue": "Autumn Crossing - 9/28/24 Stanford, CA", + "type": "song", + "publishedAt": "2024-09-29T21:48:58Z" + }, + { + "videoId": "M_P5EdkCgMk", + "title": "Goose - Madhuvan - 9/26/24 San Diego, CA", + "date": "2024-09-26", + "venue": "Madhuvan - 9/26/24 San Diego, CA", + "type": "song", + "publishedAt": "2024-09-27T18:45:49Z" + }, + { + "videoId": "mVbMsy8-wQg", + "title": "Goose - Arrow - 9/22/24 Troutdale, OR", + "date": "2024-09-22", + "venue": "Arrow - 9/22/24 Troutdale, OR", + "type": "song", + "publishedAt": "2024-09-23T19:24:40Z" + }, + { + "videoId": "nvGbQpRVU24", + "title": "\u201cOne In, One Out\u201d live from Kettlehouse Amphitheater - 9/19/24", + "date": "2024-09-19", + "venue": null, + "type": "song", + "publishedAt": "2024-09-23T01:43:56Z" + }, + { + "videoId": "_qJ1yGUx6kA", + "title": "Goose - Red Bird - 9/21/24 Carnation, WA", + "date": "2024-09-21", + "venue": "Red Bird - 9/21/24 Carnation, WA", + "type": "song", + "publishedAt": "2024-09-22T06:51:04Z" + }, + { + "videoId": "bkn0MrjMZnE", + "title": "Goose - One In, One Out - 9/19/24 Bonner, MT", + "date": "2024-09-19", + "venue": "One In, One Out - 9/19/24 Bonner, MT", + "type": "song", + "publishedAt": "2024-09-20T21:39:42Z" + }, + { + "videoId": "xj7a0Bfx9Bc", + "title": "Goose - Zalt - 9/17/24 Magna, UT", + "date": "2024-09-17", + "venue": "Zalt - 9/17/24 Magna, UT", + "type": "song", + "publishedAt": "2024-09-19T05:35:50Z" + }, + { + "videoId": "kMOY8p3cWOE", + "title": "Goosemas 2024 Announce", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-09-18T16:35:34Z" + }, + { + "videoId": "aXiNvMxmIpE", + "title": "\u201cFeel It Now\u201d live from Ting Pavilion - 9/9/24", + "date": "2024-09-09", + "venue": null, + "type": "song", + "publishedAt": "2024-09-16T20:53:55Z" + }, + { + "videoId": "NFsSMBVfqBA", + "title": "Goose - Earthling or Alien? - 9/15/24 Waukee, IA", + "date": "2024-09-15", + "venue": "Earthling or Alien? - 9/15/24 Waukee, IA", + "type": "song", + "publishedAt": "2024-09-16T06:16:32Z" + }, + { + "videoId": "0rVBmEeBcf0", + "title": "Goose - Drive - 9/14/24 The Armory, Minneapolis, MN", + "date": "2024-09-14", + "venue": "Drive - 9/14/24 The Armory, Minneapolis, MN", + "type": "song", + "publishedAt": "2024-09-15T05:51:42Z" + }, + { + "videoId": "f78FcrKhoYU", + "title": "Goose - Dripfield \u2192 (satellite) - 9/13/24 Chicago, IL", + "date": "2024-09-13", + "venue": "Dripfield \u2192 (satellite) - 9/13/24 Chicago, IL", + "type": "sequence", + "publishedAt": "2024-09-14T21:33:14Z" + }, + { + "videoId": "89OnW-5Z9zI", + "title": "Goose - A Western Sun & Turned Clouds feat. Julian Lage - 9/12/24 Chicago, IL", + "date": "2024-09-12", + "venue": "A Western Sun & Turned Clouds feat. Julian Lage - 9/12/24 Chicago, IL", + "type": "song", + "publishedAt": "2024-09-14T21:31:23Z" + }, + { + "videoId": "ikcV-Wv7Yo4", + "title": "\u201cSinnerman\u201d live from SPAC - 9/7/24", + "date": "2024-09-07", + "venue": null, + "type": "song", + "publishedAt": "2024-09-13T23:12:12Z" + }, + { + "videoId": "XQt4Wgq-RA8", + "title": "\u201cTumble\u201d live from Ting Pavilion - 9/9/24 \ud83c\udf00", + "date": "2024-09-09", + "venue": null, + "type": "song", + "publishedAt": "2024-09-12T22:38:32Z" + }, + { + "videoId": "8hjNd8gthjw", + "title": "\u201cTraveler I\u201d live from MGM Music Hall - 9/3/24", + "date": "2024-09-03", + "venue": null, + "type": "song", + "publishedAt": "2024-09-12T03:26:43Z" + }, + { + "videoId": "GA_CK8cGFws", + "title": "Goose - This Old Sea \u2192 Interlude II - 9/9/24 Charlottesville, VA", + "date": "2024-09-09", + "venue": "This Old Sea \u2192 Interlude II - 9/9/24 Charlottesville, VA", + "type": "sequence", + "publishedAt": "2024-09-10T16:59:08Z" + }, + { + "videoId": "s2rTrqmF_O8", + "title": "Shamaaaa Lamaaaa #livemusic #shorts", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-09-09T22:36:54Z" + }, + { + "videoId": "HWVXyUS0PdE", + "title": "\u201cAtlas Dogs\u201d live from SPAC - 9/7/24 \ud83e\udd18", + "date": "2024-09-07", + "venue": null, + "type": "song", + "publishedAt": "2024-09-08T22:15:59Z" + }, + { + "videoId": "AKXBMnZumyQ", + "title": "Goose - Hungersite - 9/7/24 SPAC, Saratoga Springs, NY", + "date": "2024-09-07", + "venue": "Hungersite - 9/7/24 SPAC, Saratoga Springs, NY", + "type": "song", + "publishedAt": "2024-09-08T06:37:56Z" + }, + { + "videoId": "-olNAOFDYlw", + "title": "Goose - Atlas Dogs - 9/7/24 SPAC, Saratoga Springs, NY", + "date": "2024-09-07", + "venue": "Atlas Dogs - 9/7/24 SPAC, Saratoga Springs, NY", + "type": "song", + "publishedAt": "2024-09-08T06:34:19Z" + }, + { + "videoId": "pVXXbqzrpLo", + "title": "Goose - Drive - 9/7/24 SPAC, Saratoga Springs, NY", + "date": "2024-09-07", + "venue": "Drive - 9/7/24 SPAC, Saratoga Springs, NY", + "type": "song", + "publishedAt": "2024-09-08T06:32:36Z" + }, + { + "videoId": "re8SWep9lv0", + "title": "Goose - Big Modern! - 9/7/24 SPAC, Saratoga Springs, NY", + "date": "2024-09-07", + "venue": "Big Modern! - 9/7/24 SPAC, Saratoga Springs, NY", + "type": "song", + "publishedAt": "2024-09-08T06:32:15Z" + }, + { + "videoId": "DdIr-ihu2B0", + "title": "Goose - Thatch - 9/4/24 Boston, MA", + "date": "2024-09-04", + "venue": "Thatch - 9/4/24 Boston, MA", + "type": "song", + "publishedAt": "2024-09-05T06:02:11Z" + }, + { + "videoId": "uFatt8iHd4o", + "title": "\u201cMadhuvan\u201d from Holmdel, NJ 9/1/24 \u2728", + "date": "2024-09-01", + "venue": null, + "type": "song", + "publishedAt": "2024-09-05T01:08:55Z" + }, + { + "videoId": "AWLFuiqrz-c", + "title": "Always a pleasure hanging with @bertkreischer for Something\u2019s Burning \ud83c\udf5d", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-09-03T21:48:22Z" + }, + { + "videoId": "TiGe2Zdgmzg", + "title": "Goose - Draconian Meter Maid - 9/1/24 Holmdel, NJ", + "date": "2024-09-01", + "venue": "Draconian Meter Maid - 9/1/24 Holmdel, NJ", + "type": "song", + "publishedAt": "2024-09-02T05:37:25Z" + }, + { + "videoId": "NuL7IpUgHAo", + "title": "Goose - Set Two - 9/1/24 Holmdel, NJ", + "date": "2024-09-01", + "venue": "Set Two - 9/1/24 Holmdel, NJ", + "type": "song", + "publishedAt": "2024-09-02T05:37:07Z" + }, + { + "videoId": "Falkt-SzeWA", + "title": "Tour starts tomorrow! Who\u2019s been studying?! \ud83d\udc68\ud83c\udffb\u200d\ud83c\udfeb\ud83d\udcfd\ufe0f\ud83d\udcda", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-08-31T17:12:56Z" + }, + { + "videoId": "HfxIaIS9kIc", + "title": "Goose - Jive Lee - 6/14/24 Northlands, Swanzey, NH", + "date": "2024-06-14", + "venue": "Jive Lee - 6/14/24 Northlands, Swanzey, NH", + "type": "song", + "publishedAt": "2024-08-30T19:19:52Z" + }, + { + "videoId": "VoGOUbFcvr0", + "title": "Riker - The Complete Season 1", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-08-30T17:21:48Z" + }, + { + "videoId": "uWu7Esd7FRw", + "title": "Who\u2019s all coming to vibe with us this September??\ud83e\udd18", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-08-29T22:29:37Z" + }, + { + "videoId": "DZsdtiSe6_w", + "title": "Going once, going twice \ud83d\udca5\ud83e\udd20", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-08-29T17:11:42Z" + }, + { + "videoId": "_3Ue8T_Jovw", + "title": "We\u2019re back at it and ready for September Tour \ud83c\udfb6\ud83e\udd18", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-08-28T22:55:47Z" + }, + { + "videoId": "KF0wLhuE6UA", + "title": "Let\u2019s take a stroll with Sheamus O\u2019Larry \ud83d\udeb6\ud83c\udffb\u200d\u2642\ufe0f", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-08-28T03:49:53Z" + }, + { + "videoId": "fBu0kkqTd4o", + "title": "Goose - Mississippi Half-Step Uptown Toodeloo - 6/20/24 Atlanta, GA", + "date": "2024-06-20", + "venue": "Mississippi Half-Step Uptown Toodeloo - 6/20/24 Atlanta, GA", + "type": "song", + "publishedAt": "2024-08-27T16:03:33Z" + }, + { + "videoId": "kh-BxwVw948", + "title": "Riker Pt. 5 - Woodchuck", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-08-26T22:09:57Z" + }, + { + "videoId": "5UgtbzsviNk", + "title": "I\u2019m not saying it\u2019s aliens\u2026but it\u2019s aliens.", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-08-26T17:31:26Z" + }, + { + "videoId": "CpdvNkAjhHg", + "title": "Goose Summer Tour 2024 Vlog pt IV", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-08-25T16:59:11Z" + }, + { + "videoId": "vqCWvpK0J5Q", + "title": "Namaste \ud83e\uddd8\ud83c\udffb\u200d\u2642\ufe0f", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-08-25T03:59:02Z" + }, + { + "videoId": "Rd26yJwjCKg", + "title": "Gong in 60 seconds \ud83c\udfc3\ud83c\udffb\u200d\u2642\ufe0f", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-08-24T22:18:25Z" + }, + { + "videoId": "i7l2LFTKrcM", + "title": "\ud83c\udfa8\ud83c\udfa8\ud83c\udfa8", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-08-23T22:53:25Z" + }, + { + "videoId": "j28Fol7xebM", + "title": "See you soon Eugeneu \ud83d\udc40", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-08-23T19:29:40Z" + }, + { + "videoId": "_Q7SzyOGiOI", + "title": "Who likes to go fast? \ud83c\udfce\ufe0f", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-08-23T15:34:15Z" + }, + { + "videoId": "_FrnfqWODpw", + "title": "Goose Live at The Fox Theatre, Atlanta, GA (Night 3)", + "date": "2024-06-22", + "venue": "The Fox Theatre, Atlanta, GA (Night 3)", + "type": "full_show", + "publishedAt": "2024-08-21T00:00:31Z" + }, + { + "videoId": "J7vZoGrl6rc", + "title": "Goose Live at The Mann", + "date": "2024-06-28", + "venue": "The Mann", + "type": "full_show", + "publishedAt": "2024-08-12T00:00:07Z" + }, + { + "videoId": "RO9TCZShfpo", + "title": "Goose - Wysteria Lane - 6/26/24 Portland, ME", + "date": "2024-06-26", + "venue": "Wysteria Lane - 6/26/24 Portland, ME", + "type": "song", + "publishedAt": "2024-08-05T12:34:52Z" + }, + { + "videoId": "uDIy7dnGNRA", + "title": "Goose Summer Tour 2024 Vlog part III", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-08-01T17:27:27Z" + }, + { + "videoId": "MMv6ijcKyL0", + "title": "Goose Summer Tour 2024 Vlog pt II", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-07-19T00:00:07Z" + }, + { + "videoId": "ii6TI-qCJsI", + "title": "Our full sold out show from Forest Hills is up NOW!! \u26a1\ufe0f", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-07-15T14:42:50Z" + }, + { + "videoId": "duPdUL8rvKY", + "title": "Goose Live at Forest Hills", + "date": "2024-06-29", + "venue": "Forest Hills", + "type": "full_show", + "publishedAt": "2024-07-15T00:00:07Z" + }, + { + "videoId": "55m4Z1eLflQ", + "title": "Pancakes live from Westville Music Bowl 6/30/24", + "date": "2024-06-30", + "venue": null, + "type": "song", + "publishedAt": "2024-07-12T22:27:07Z" + }, + { + "videoId": "I0_EUrvkTis", + "title": "Goose - Tumble - 6/28/24 The Mann, Philadelphia, PA", + "date": "2024-06-28", + "venue": "Tumble - 6/28/24 The Mann, Philadelphia, PA", + "type": "song", + "publishedAt": "2024-07-08T18:11:13Z" + }, + { + "videoId": "bZFNSBc-PxU", + "title": "Goose - Rockdale - 6/30/24 New Haven, CT", + "date": "2024-06-30", + "venue": "Rockdale - 6/30/24 New Haven, CT", + "type": "song", + "publishedAt": "2024-07-01T20:59:19Z" + }, + { + "videoId": "MD6OQd9pWm0", + "title": "Goose - California Magic (feat. Matt Quinn of Mt. Joy) - 6/28/24 The Mann, Philadelphia, PA", + "date": "2024-06-28", + "venue": "California Magic (feat. Matt Quinn of Mt. Joy) - 6/28/24 The Mann, Philadelphia, PA", + "type": "song", + "publishedAt": "2024-06-29T06:34:14Z" + }, + { + "videoId": "foSUStaJtug", + "title": "Goose - No Rain (feat. Rogers Stevens of Blind Melon) - 6/28/24 The Mann, Philadelphia, PA", + "date": "2024-06-28", + "venue": "No Rain (feat. Rogers Stevens of Blind Melon) - 6/28/24 The Mann, Philadelphia, PA", + "type": "song", + "publishedAt": "2024-06-29T05:13:00Z" + }, + { + "videoId": "5TAGzb4NMDM", + "title": "Goose - Arrow - 6/22/24 Fox Theatre, Atlanta, GA", + "date": "2024-06-22", + "venue": "Arrow - 6/22/24 Fox Theatre, Atlanta, GA", + "type": "song", + "publishedAt": "2024-06-24T21:39:28Z" + }, + { + "videoId": "MgEN4VQDYNo", + "title": "Goose - Hungersite \u2192 Give It Time \u2192 Thatch - 6/21/24 Fox Theatre, Atlanta, GA", + "date": "2024-06-21", + "venue": "Hungersite \u2192 Give It Time \u2192 Thatch - 6/21/24 Fox Theatre, Atlanta, GA", + "type": "sequence", + "publishedAt": "2024-06-23T22:02:24Z" + }, + { + "videoId": "0s8-4m32Az8", + "title": "Goose - Pancakes - 6/18/24 Raleigh, NC", + "date": "2024-06-18", + "venue": "Pancakes - 6/18/24 Raleigh, NC", + "type": "song", + "publishedAt": "2024-06-21T16:00:20Z" + }, + { + "videoId": "qZ_naMbZP5M", + "title": "Goose - Tumble - 6/15/24 CMAC, Canandaigua, NY", + "date": "2024-06-15", + "venue": "Tumble - 6/15/24 CMAC, Canandaigua, NY", + "type": "song", + "publishedAt": "2024-06-20T05:06:13Z" + }, + { + "videoId": "ScTvDn-i7Ug", + "title": "Goose - Hungersite - 6/11/24 Kansas City, MO", + "date": "2024-06-11", + "venue": "Hungersite - 6/11/24 Kansas City, MO", + "type": "song", + "publishedAt": "2024-06-16T17:17:11Z" + }, + { + "videoId": "E-SGhIr-_Bo", + "title": "Goose - Inside Out - 6/11/24 Kansas City, MO", + "date": "2024-06-11", + "venue": "Inside Out - 6/11/24 Kansas City, MO", + "type": "song", + "publishedAt": "2024-06-15T16:29:11Z" + }, + { + "videoId": "l9BoSNwlPpU", + "title": "Goose Summer Tour 2024 Vlog pt I", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-06-14T00:00:06Z" + }, + { + "videoId": "g6U0fdmsnBY", + "title": "Goose - Madhuvan - 6/8/24 Greenwood Village, CO", + "date": "2024-06-08", + "venue": "Madhuvan - 6/8/24 Greenwood Village, CO", + "type": "song", + "publishedAt": "2024-06-11T18:05:21Z" + }, + { + "videoId": "GoeoGWPWmMM", + "title": "Goose - Jive Lee - 6/7/24 Greenwood Village, CO", + "date": "2024-06-07", + "venue": "Jive Lee - 6/7/24 Greenwood Village, CO", + "type": "song", + "publishedAt": "2024-06-09T18:58:14Z" + }, + { + "videoId": "psH9CixWTgQ", + "title": "Goose - Thatch - 6/5/24 St. Louis, MO", + "date": "2024-06-05", + "venue": "Thatch - 6/5/24 St. Louis, MO", + "type": "song", + "publishedAt": "2024-06-07T23:30:41Z" + }, + { + "videoId": "lhjbay9_dO4", + "title": "Goose - Red Bird \u2192 Tomorrow Never Knows - 6/5/24 St. Louis, MO", + "date": "2024-06-05", + "venue": "Red Bird \u2192 Tomorrow Never Knows - 6/5/24 St. Louis, MO", + "type": "sequence", + "publishedAt": "2024-06-07T19:34:04Z" + }, + { + "videoId": "EHl5SkLJx6Y", + "title": "Goose - Borne - 6/4/24 St. Louis, MO", + "date": "2024-06-04", + "venue": "Borne - 6/4/24 St. Louis, MO", + "type": "song", + "publishedAt": "2024-06-06T04:39:53Z" + }, + { + "videoId": "mC4lJmEDwsw", + "title": "Goose Live at Solshine Reverie 2024", + "date": null, + "venue": "Solshine Reverie 2024", + "type": "full_show", + "publishedAt": "2024-06-03T00:00:07Z" + }, + { + "videoId": "D2pqicjZPjU", + "title": "Goose - Tumble - 4/10/24 Port Chester, NY", + "date": "2024-04-10", + "venue": "Tumble - 4/10/24 Port Chester, NY", + "type": "song", + "publishedAt": "2024-05-29T16:04:30Z" + }, + { + "videoId": "HEAp5Q58z1k", + "title": "Wilton High School Doc", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-05-15T00:00:06Z" + }, + { + "videoId": "A35SKDc2Ms8", + "title": "Ghostbusters from 4/20/09", + "date": "2009-04-20", + "venue": null, + "type": "song", + "publishedAt": "2024-05-14T14:27:56Z" + }, + { + "videoId": "_fCsZ3q2POw", + "title": "Goose - Drive - 4/7/24 Port Chester, NY", + "date": "2024-04-07", + "venue": "Drive - 4/7/24 Port Chester, NY", + "type": "song", + "publishedAt": "2024-05-07T13:41:46Z" + }, + { + "videoId": "txAJZmN7JAI", + "title": "Goose - Pancakes - 4/7/24 Port Chester, NY", + "date": "2024-04-07", + "venue": "Pancakes - 4/7/24 Port Chester, NY", + "type": "song", + "publishedAt": "2024-04-24T19:56:45Z" + }, + { + "videoId": "1VsvNVdfyaI", + "title": "The Capitol Theatre 2024 Doc", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-04-18T00:00:06Z" + }, + { + "videoId": "FVaNoteLxVQ", + "title": "Goose Live at The Capitol Theatre - Night 2", + "date": null, + "venue": "The Capitol Theatre", + "type": "full_show", + "publishedAt": "2024-04-17T02:49:08Z" + }, + { + "videoId": "Ts482E779gM", + "title": "Goose - Everything Must Go - 4/7/24 Port Chester, NY", + "date": "2024-04-07", + "venue": "Everything Must Go - 4/7/24 Port Chester, NY", + "type": "song", + "publishedAt": "2024-04-15T19:27:41Z" + }, + { + "videoId": "XY8reZTL1n8", + "title": "Cap 2024 Announce Bloopers", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-04-13T17:57:39Z" + }, + { + "videoId": "fLlVcnCW-vU", + "title": "Goose x Vampire Weekend - Gen-X Cops \u2192 Cape Cod Kwassa Kwassa - 4/10/24 Port Chester, NY", + "date": "2024-04-10", + "venue": "Gen-X Cops \u2192 Cape Cod Kwassa Kwassa - 4/10/24 Port Chester, NY", + "type": "sequence", + "publishedAt": "2024-04-11T08:06:13Z" + }, + { + "videoId": "FEoKfLjoADQ", + "title": "Goose Live at The Capitol Theatre - Night 4", + "date": null, + "venue": "The Capitol Theatre", + "type": "full_show", + "publishedAt": "2024-04-11T05:05:11Z" + }, + { + "videoId": "n7ggpezIhTI", + "title": "Goose - Into the Myst \u2192 Arcadia - 4/8/24 The Capitol Theatre, Port Chester, NY (4K)", + "date": "2024-04-08", + "venue": null, + "type": "sequence", + "publishedAt": "2024-04-10T05:34:18Z" + }, + { + "videoId": "JQleSL3zvp8", + "title": "Goose Live at The Capitol Theatre - Night 3", + "date": null, + "venue": "The Capitol Theatre", + "type": "full_show", + "publishedAt": "2024-04-10T04:55:50Z" + }, + { + "videoId": "q6FbTKxti_c", + "title": "Goose Live at The Capitol Theatre - Night 1", + "date": null, + "venue": "The Capitol Theatre", + "type": "full_show", + "publishedAt": "2024-04-08T05:05:43Z" + }, + { + "videoId": "L3BRwVcJxKU", + "title": "Capitol Theatre 2024 Announcement", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-03-12T16:44:22Z" + }, + { + "videoId": "G47G1AbSCzM", + "title": "Goose - Chateau Sessions pt II", + "date": null, + "venue": null, + "type": "session", + "publishedAt": "2024-03-12T00:00:06Z" + }, + { + "videoId": "Oo3jMfgm-po", + "title": "Goose - Chateau Sessions pt I", + "date": null, + "venue": null, + "type": "session", + "publishedAt": "2024-03-05T01:00:09Z" + }, + { + "videoId": "PqQu-WDvNGQ", + "title": "Gemini II", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-02-15T17:00:07Z" + }, + { + "videoId": "3kI9TxjYzMs", + "title": "Goose - Manu (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2024-02-07T00:08:21Z" + }, + { + "videoId": "jLyQaKRLR1o", + "title": "Goose - Arrokoth (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2024-02-07T00:07:54Z" + }, + { + "videoId": "xPK-EvjYSkY", + "title": "Goose - Regulus (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2024-02-07T00:07:24Z" + }, + { + "videoId": "7fOf26UqO4U", + "title": "Goose - Phoenix (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2024-02-07T00:06:59Z" + }, + { + "videoId": "tXQQxGIEnRc", + "title": "Goose - Chiron (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2024-02-07T00:05:59Z" + }, + { + "videoId": "oUFfIOKA2pg", + "title": "Goose - Bahku (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2024-02-07T00:03:47Z" + }, + { + "videoId": "-0ZF6KbjMIE", + "title": "Goose - Nebula (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2024-02-07T00:02:35Z" + }, + { + "videoId": "CQ4Bq3A549g", + "title": "Goose - Leo (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2024-02-07T00:00:54Z" + }, + { + "videoId": "yesLp-rcnBE", + "title": "Goose - Apollo (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2024-02-07T00:00:29Z" + }, + { + "videoId": "Vx22MkRwdLg", + "title": "Gemini I", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-02-05T22:00:08Z" + }, + { + "videoId": "4f-Jthuwr0E", + "title": "February 4, 2024", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-02-05T02:25:00Z" + }, + { + "videoId": "vmZ-CL7Ggtg", + "title": "February 4, 2024", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-02-04T17:05:06Z" + }, + { + "videoId": "yv4PGnHkNno", + "title": "February 3, 2024", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-02-03T17:10:34Z" + }, + { + "videoId": "Uf_ol3S8SfU", + "title": "February 2, 2024", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-02-02T17:18:56Z" + }, + { + "videoId": "_jrnveef2c0", + "title": "February 1, 2024", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-02-01T17:35:29Z" + }, + { + "videoId": "ijS7Stzcj94", + "title": "January 31, 2024", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-01-31T17:09:20Z" + }, + { + "videoId": "ln9WcGISHYk", + "title": "January 30, 2024", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-01-30T17:06:20Z" + }, + { + "videoId": "n9JUhMqqqoc", + "title": "January 29, 2024", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-01-29T17:08:08Z" + }, + { + "videoId": "B29-OtR74f8", + "title": "January 28, 2024", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2024-01-29T02:10:11Z" + }, + { + "videoId": "XQseyBwSoOs", + "title": "Goose Europe Tour 2023 Doc", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2023-12-18T01:00:08Z" + }, + { + "videoId": "l8SSFBDvvFI", + "title": "Goosemas. In Space! - 12/9/23 Hampton, VA (Full Show)", + "date": "2023-12-09", + "venue": null, + "type": "full_show", + "publishedAt": "2023-12-14T01:00:08Z" + }, + { + "videoId": "GGjcTRDQOjE", + "title": "Goosemas. In Space! - 12/8/23 Hampton, VA (Full Show)", + "date": "2023-12-08", + "venue": null, + "type": "full_show", + "publishedAt": "2023-12-13T01:00:07Z" + }, + { + "videoId": "wg3KM6RfEzo", + "title": "Goose - The Way It Is (feat. Bruce Hornsby) - 12/9/23 Goosemas X, Hampton, VA [4K]", + "date": "2023-12-09", + "venue": null, + "type": "song", + "publishedAt": "2023-12-10T14:55:10Z" + }, + { + "videoId": "sUAYe6XMSfM", + "title": "Goose - Fire - 12/8/23 Goosemas X, Hampton, VA (4K)", + "date": "2023-12-08", + "venue": null, + "type": "song", + "publishedAt": "2023-12-09T15:56:28Z" + }, + { + "videoId": "YjRcGMb8rQc", + "title": "Goosemas. In Space!", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2023-12-01T19:00:10Z" + }, + { + "videoId": "wvhNRj13KrQ", + "title": "Goose Live in London 2023", + "date": "2023-11-20", + "venue": null, + "type": "song", + "publishedAt": "2023-11-26T01:00:07Z" + }, + { + "videoId": "Uavm1OtypFg", + "title": "Goose Fall Tour 2023 Vlog", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2023-11-23T15:00:07Z" + }, + { + "videoId": "hrbpWRt1mLA", + "title": "Goose - All I Need - 11/18/23 Thekla, Bristol, UK", + "date": "2023-11-18", + "venue": "All I Need - 11/18/23 Thekla, Bristol, UK", + "type": "song", + "publishedAt": "2023-11-21T15:01:23Z" + }, + { + "videoId": "nFE8uE8YSgA", + "title": "Goose - Everything Must Go - 11/16/23 Manchester, UK", + "date": "2023-11-16", + "venue": "Everything Must Go - 11/16/23 Manchester, UK", + "type": "song", + "publishedAt": "2023-11-17T20:32:26Z" + }, + { + "videoId": "zcZevZg_Zfo", + "title": "Goose - Thatch - 11/7/23 Melkweg, Amsterdam, NH", + "date": "2023-11-07", + "venue": "Thatch - 11/7/23 Melkweg, Amsterdam, NH", + "type": "song", + "publishedAt": "2023-11-09T16:50:19Z" + }, + { + "videoId": "TrjVuf62wxE", + "title": "Goose - Factory Fiction - 10/6/23 Red Rocks", + "date": "2023-10-06", + "venue": null, + "type": "song", + "publishedAt": "2023-10-30T17:22:29Z" + }, + { + "videoId": "7LpkK4mptS8", + "title": "Goose - Arrow - 10/3/23 Flagstaff, AZ", + "date": "2023-10-03", + "venue": "Arrow - 10/3/23 Flagstaff, AZ", + "type": "song", + "publishedAt": "2023-10-18T21:11:49Z" + }, + { + "videoId": "ZRrDdc-NcKo", + "title": "Goose - Everything Must Go - 10/6/23 Red Rocks", + "date": "2023-10-06", + "venue": null, + "type": "song", + "publishedAt": "2023-10-15T20:52:08Z" + }, + { + "videoId": "fiYq2sid9xQ", + "title": "Goose Live at CSU in Fort Collins, CO (Full Show)", + "date": "2023-10-07", + "venue": "CSU in Fort Collins, CO (Full Show)", + "type": "full_show", + "publishedAt": "2023-10-13T00:00:07Z" + }, + { + "videoId": "67CkSDnT8vc", + "title": "Goose Live at Red Rocks 10/6/23 (Full Show)", + "date": "2023-10-06", + "venue": "Red Rocks 10/6/23 (Full Show)", + "type": "full_show", + "publishedAt": "2023-10-10T00:00:08Z" + }, + { + "videoId": "s8eBLa9wUwY", + "title": "Goose - Elizabeth - 10/1/23 Las Vegas, NV (4K)", + "date": "2023-10-01", + "venue": null, + "type": "song", + "publishedAt": "2023-10-05T04:47:19Z" + }, + { + "videoId": "4vl8KIE23Og", + "title": "Goose - Drive - 9/22/23 Bonner, MT (4K)", + "date": "2023-09-22", + "venue": null, + "type": "song", + "publishedAt": "2023-09-24T19:00:48Z" + }, + { + "videoId": "XXo3fSL0Zhc", + "title": "Goose - Thatch - 9/22/23 Bonner, MT (4K)", + "date": "2023-09-22", + "venue": null, + "type": "song", + "publishedAt": "2023-09-23T18:59:42Z" + }, + { + "videoId": "2mDjgiexmZQ", + "title": "Goose - Elizabeth - 9/17/23 Milwaukee, WI (4K)", + "date": "2023-09-17", + "venue": null, + "type": "song", + "publishedAt": "2023-09-21T18:00:39Z" + }, + { + "videoId": "GYKOL1X6qYo", + "title": "Goose - Wysteria Lane - 9/16/23 Detroit, MI (4K)", + "date": "2023-09-16", + "venue": null, + "type": "song", + "publishedAt": "2023-09-18T18:25:24Z" + }, + { + "videoId": "0NQ9-YL9esc", + "title": "Goose - Rosewood Heart (feat. Dawes) - 9/15/23 Borderland Festival [4K]", + "date": "2023-09-15", + "venue": null, + "type": "song", + "publishedAt": "2023-09-16T16:10:57Z" + }, + { + "videoId": "sAJUfWW7Zuo", + "title": "Goose - Autumn Crossing (Official Video)", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2023-09-08T16:00:08Z" + }, + { + "videoId": "lijuDQf3IL8", + "title": "Goose - Arrow (LP Giobbi Remix) (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2023-08-15T16:00:10Z" + }, + { + "videoId": "eth4y7YHfJQ", + "title": "Goose - Animal (feat. Animal) - Newport Folk Festival 7/29/23", + "date": "2023-07-29", + "venue": null, + "type": "song", + "publishedAt": "2023-08-11T16:18:36Z" + }, + { + "videoId": "s5vajh7jJNg", + "title": "Day of Show - EP 12: Goosemas 2022", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2023-08-03T16:26:00Z" + }, + { + "videoId": "CF0IHr738Q8", + "title": "Goose - The Empress of Organos (feat. Jake Cinninger and Joel Cummins) - 7/1/23 Resonance", + "date": "2023-07-01", + "venue": null, + "type": "song", + "publishedAt": "2023-07-19T16:06:51Z" + }, + { + "videoId": "HAkc_RH9_bo", + "title": "Goose Live at SPAC 7/7/23 (Full Show)", + "date": "2023-07-07", + "venue": "SPAC 7/7/23 (Full Show)", + "type": "full_show", + "publishedAt": "2023-07-11T00:00:09Z" + }, + { + "videoId": "cmQvjNVMdGg", + "title": "Join us for the full show premiere of SPAC tonight at 8PM ET! Only on YouTube \u2728", + "date": null, + "venue": null, + "type": "full_show", + "publishedAt": "2023-07-10T15:24:18Z" + }, + { + "videoId": "-f_SCr5y4Gw", + "title": "Goose - Thatch - 7/7/23 SPAC, Saratoga Springs, NY", + "date": "2023-07-07", + "venue": "Thatch - 7/7/23 SPAC, Saratoga Springs, NY", + "type": "song", + "publishedAt": "2023-07-08T16:25:04Z" + }, + { + "videoId": "85HaLNanj4I", + "title": "Goose - Hot Tea - 7/6/23 Thompson's Point, Portland, ME", + "date": "2023-07-06", + "venue": "Hot Tea - 7/6/23 Thompson's Point, Portland, ME", + "type": "song", + "publishedAt": "2023-07-07T22:14:45Z" + }, + { + "videoId": "LIPPOW47-RI", + "title": "Goose + Fireworks - 7/3/23 Asbury Park, NJ (4K)", + "date": "2023-07-03", + "venue": null, + "type": "song", + "publishedAt": "2023-07-04T16:34:33Z" + }, + { + "videoId": "l-ljbuOI94g", + "title": "Goose - Red Bird - 6/23/23 Palace Theatre, Louisville, KY (4K)", + "date": "2023-06-23", + "venue": null, + "type": "song", + "publishedAt": "2023-06-24T05:39:28Z" + }, + { + "videoId": "hnb3-lUmeJg", + "title": "Goose - Arrow - 6/22/23 Palace Theatre, Louisville, KY", + "date": "2023-06-22", + "venue": "Arrow - 6/22/23 Palace Theatre, Louisville, KY", + "type": "song", + "publishedAt": "2023-06-23T05:01:49Z" + }, + { + "videoId": "5Zlld7m_Vh4", + "title": "Goosemas 10 Announce", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2023-06-20T16:03:49Z" + }, + { + "videoId": "DN3aXDKZcrE", + "title": "Goose Live at Radio City Music Hall, New York, NY 6/24/22 (Full Show)", + "date": "2022-06-24", + "venue": "Radio City Music Hall, New York, NY 6/24/22 (Full Show)", + "type": "full_show", + "publishedAt": "2023-06-14T00:00:08Z" + }, + { + "videoId": "Ibp95ZgaR5I", + "title": "Goose - 4/28/23 The Warfield, San Francisco, CA (Full Show) [4K]", + "date": "2023-04-28", + "venue": null, + "type": "full_show", + "publishedAt": "2023-05-18T00:00:10Z" + }, + { + "videoId": "vfc1iLX5yPg", + "title": "teach you to f@#% with Duke Jackson", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2023-05-17T18:39:25Z" + }, + { + "videoId": "NV9bGLBuJs8", + "title": "Goose - Hot Tea (feat. Neal Francis and The Horn Section) - 5/3/23 New Orleans, LA [4K]", + "date": "2023-05-03", + "venue": null, + "type": "song", + "publishedAt": "2023-05-10T18:05:15Z" + }, + { + "videoId": "d6czkeCJyyw", + "title": "Goose - Thatch - 4/28/23 The Warfield, San Francisco, CA", + "date": "2023-04-28", + "venue": "Thatch - 4/28/23 The Warfield, San Francisco, CA", + "type": "song", + "publishedAt": "2023-04-29T23:09:37Z" + }, + { + "videoId": "WZM0tDSnYhI", + "title": "Goose - Echo of a Rose - 4/22/23 Paramount Theatre, Seattle, WA (4K)", + "date": "2023-04-22", + "venue": null, + "type": "song", + "publishedAt": "2023-04-23T21:21:09Z" + }, + { + "videoId": "9z3hgct0-Wg", + "title": "Goose - Hungersite - 4/14/23 The Salt Shed, Chicago, IL (4K)", + "date": "2023-04-14", + "venue": null, + "type": "song", + "publishedAt": "2023-04-16T19:10:17Z" + }, + { + "videoId": "f2goVPIeXCM", + "title": "Goose - Pancakes - 4/15/23 The Salt Shed, Chicago, IL (4K)", + "date": "2023-04-15", + "venue": null, + "type": "song", + "publishedAt": "2023-04-16T19:10:05Z" + }, + { + "videoId": "v1dxqhg9_MM", + "title": "Goose - Madhuvan - 4/1/23 Ryman Auditorium, Nashville, TN (4K)", + "date": "2023-04-01", + "venue": null, + "type": "song", + "publishedAt": "2023-04-05T14:49:37Z" + }, + { + "videoId": "LEmS_5epoa8", + "title": "Goose - Arrow - 3/31/23 Ryman Auditorium, Nashville, TN (4K)", + "date": "2023-03-31", + "venue": null, + "type": "song", + "publishedAt": "2023-04-03T16:31:28Z" + }, + { + "videoId": "yj0q-WyjHuA", + "title": "Goose - Jive Lee - 4/1/23 Ryman Auditorium, Nashville, TN (4K)", + "date": "2023-04-01", + "venue": null, + "type": "song", + "publishedAt": "2023-04-02T06:35:32Z" + }, + { + "videoId": "luT5Gi6EWcY", + "title": "Goose - Slow Ready - 3/28/23 Georgia Theatre, Athens, GA (4K)", + "date": "2023-03-28", + "venue": null, + "type": "song", + "publishedAt": "2023-03-29T22:32:03Z" + }, + { + "videoId": "tYAT00cUnlk", + "title": "Goose - Red Bird - 3/23/23 Roadrunner, Boston, MA (4K)", + "date": "2023-03-23", + "venue": null, + "type": "song", + "publishedAt": "2023-03-28T13:00:45Z" + }, + { + "videoId": "A55i-RVthOM", + "title": "Goose - Borne - 3/25/23 The Met, Philadelphia, PA (4K)", + "date": "2023-03-25", + "venue": null, + "type": "song", + "publishedAt": "2023-03-26T13:00:05Z" + }, + { + "videoId": "ltqTagB6TVo", + "title": "Goose - Echo of a Rose - 3/24/23 The Met, Philadelphia, PA (4K)", + "date": "2023-03-24", + "venue": null, + "type": "song", + "publishedAt": "2023-03-25T13:00:37Z" + }, + { + "videoId": "ErlfDzrhxZY", + "title": "Goose - 3/11/23 The Capitol Theatre, Port Chester, NY (Full Show) [4K]", + "date": "2023-03-11", + "venue": null, + "type": "full_show", + "publishedAt": "2023-03-22T00:00:10Z" + }, + { + "videoId": "kEy8yA0soRk", + "title": "Goose - 3/10/23 The Capitol Theatre, Port Chester, NY (Full Show) [4K]", + "date": "2023-03-10", + "venue": null, + "type": "full_show", + "publishedAt": "2023-03-21T00:00:08Z" + }, + { + "videoId": "JcP6eSLrh1E", + "title": "Join us this Monday and Tuesday at 8PM ET for premieres of 3/10 and 3/11 Capitol Theatre shows \u26a1\ufe0f\ud83d\ude4c", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2023-03-18T18:18:55Z" + }, + { + "videoId": "H0H7drLzRSI", + "title": "Goose - Thatch - 3/10/23 Port Chester, NY (4K)", + "date": "2023-03-10", + "venue": null, + "type": "song", + "publishedAt": "2023-03-14T00:36:48Z" + }, + { + "videoId": "hWxs5oGvpz4", + "title": "Goose - Mustang Sally (feat. Jimmy Fallon) - 3/10/23 Port Chester, NY (4K)", + "date": "2023-03-10", + "venue": null, + "type": "song", + "publishedAt": "2023-03-11T14:00:23Z" + }, + { + "videoId": "awPARCTgUHk", + "title": "Goose - All I Need - 3/8/23 Port Chester, NY (4K)", + "date": "2023-03-08", + "venue": null, + "type": "song", + "publishedAt": "2023-03-09T21:08:46Z" + }, + { + "videoId": "byyFoCHk8MY", + "title": "Goose - 2/2/22 Bend, OR (Full Show)", + "date": "2022-02-02", + "venue": null, + "type": "full_show", + "publishedAt": "2023-02-03T05:14:58Z" + }, + { + "videoId": "k4SAr1-IbVU", + "title": "Goose - Peggy-O (feat. Bob Weir) - 1/15/23 Riviera Maya, MX", + "date": "2023-01-15", + "venue": "Peggy-O (feat. Bob Weir) - 1/15/23 Riviera Maya, MX", + "type": "song", + "publishedAt": "2023-01-16T17:41:58Z" + }, + { + "videoId": "Mg7Q6pNFSME", + "title": "Day of Show - EP 11: Taboose Tour 2022", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2023-01-11T15:00:22Z" + }, + { + "videoId": "hK-BkTl02Mo", + "title": "Goose - 12/31/22 Cincinnati, OH (Full Show)", + "date": "2022-12-31", + "venue": null, + "type": "full_show", + "publishedAt": "2023-01-08T01:00:11Z" + }, + { + "videoId": "PuUcDJY-XzE", + "title": "Goose - 12/30/22 Cincinnati, OH (Full Show)", + "date": "2022-12-30", + "venue": null, + "type": "full_show", + "publishedAt": "2023-01-07T01:00:07Z" + }, + { + "videoId": "1TwXvMlpaXs", + "title": "Goose - Silver Rising - 12/31/22 Cincinnati, OH", + "date": "2022-12-31", + "venue": "Silver Rising - 12/31/22 Cincinnati, OH", + "type": "song", + "publishedAt": "2023-01-05T14:50:05Z" + }, + { + "videoId": "BrsicEA4CRU", + "title": "Goose - 12/17/22 Goosemas IX, Broomfield, CO (Full Show)", + "date": "2022-12-17", + "venue": null, + "type": "full_show", + "publishedAt": "2022-12-24T01:00:09Z" + }, + { + "videoId": "BA3BIoIbHa8", + "title": "Goose - 12/16/22 Goosemas IX, Broomfield, CO (Full Show)", + "date": "2022-12-16", + "venue": null, + "type": "full_show", + "publishedAt": "2022-12-23T01:00:11Z" + }, + { + "videoId": "GveiAHbk6kk", + "title": "Goose - Wysteria Lane \u2192 Moby - 12/16/22 Goosemas IX, Broomfield, CO", + "date": "2022-12-16", + "venue": "Wysteria Lane \u2192 Moby - 12/16/22 Goosemas IX, Broomfield, CO", + "type": "sequence", + "publishedAt": "2022-12-19T14:00:07Z" + }, + { + "videoId": "5rIhOJiUupg", + "title": "Goose - Dripfield - 12/17/22 Goosemas IX, Broomfield, CO", + "date": "2022-12-17", + "venue": "Dripfield - 12/17/22 Goosemas IX, Broomfield, CO", + "type": "song", + "publishedAt": "2022-12-18T13:00:04Z" + }, + { + "videoId": "Uj1jy1mYcts", + "title": "Goose - 11/18/22 Syracuse, NY (Full Show 4K HDR)", + "date": "2022-11-18", + "venue": null, + "type": "full_show", + "publishedAt": "2022-12-01T01:00:07Z" + }, + { + "videoId": "myfDQfT5jOo", + "title": "Goose - 11/19/22 Reading, PA (Full Show 4K HDR)", + "date": "2022-11-19", + "venue": null, + "type": "full_show", + "publishedAt": "2022-11-26T01:00:08Z" + }, + { + "videoId": "bWAdw6NTXKs", + "title": "Goose - This Old Sea feat. Trey Anastasio - 11/15/22 Moon, PA (4K HDR)", + "date": "2022-11-15", + "venue": null, + "type": "song", + "publishedAt": "2022-11-18T19:51:33Z" + }, + { + "videoId": "qG20pIL7jDE", + "title": "Goose - All I Need (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2022-11-18T05:01:33Z" + }, + { + "videoId": "GkFGPdy1woQ", + "title": "Goose - Elizabeth (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2022-11-18T05:01:19Z" + }, + { + "videoId": "y0mHfRSfTLM", + "title": "Goose - Tumble (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2022-11-18T05:01:03Z" + }, + { + "videoId": "dN1Xy1xYvjA", + "title": "Goose - Undecided (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2022-11-18T05:00:47Z" + }, + { + "videoId": "mGHqfk0gbAk", + "title": "Goose - Madhuvan - 11/13/22 Glens Falls, NY (4K HDR)", + "date": "2022-11-13", + "venue": null, + "type": "song", + "publishedAt": "2022-11-16T15:00:29Z" + }, + { + "videoId": "FB0Y6A-bdGI", + "title": "Goose - Red Bird feat. Trey Anastasio - 11/13/22 Glens Falls, NY (4K HDR)", + "date": "2022-11-13", + "venue": null, + "type": "song", + "publishedAt": "2022-11-16T15:00:09Z" + }, + { + "videoId": "Jh0Xlx8rylQ", + "title": "Goose - Factory Fiction feat. Trey Anastasio - 11/12/22 Uncasville, CT (4K HDR)", + "date": "2022-11-12", + "venue": null, + "type": "song", + "publishedAt": "2022-11-14T17:28:33Z" + }, + { + "videoId": "j6Ldzj8unIU", + "title": "Goose - Fish in the Sea feat. The TAB Horns - 11/12/22 Uncasville, CT (4K HDR)", + "date": "2022-11-12", + "venue": null, + "type": "song", + "publishedAt": "2022-11-14T17:12:21Z" + }, + { + "videoId": "Kt09o8tpk5c", + "title": "Goose - Drive \u2192 Echo of a Rose - 11/11/22 Lowell, MA (4K HDR)", + "date": "2022-11-11", + "venue": null, + "type": "sequence", + "publishedAt": "2022-11-13T17:28:36Z" + }, + { + "videoId": "ed8Abu6dmUI", + "title": "Goose - All I Need feat. Trey Anastasio - 11/9/22 Portland, ME (4K HDR)", + "date": "2022-11-09", + "venue": null, + "type": "song", + "publishedAt": "2022-11-12T14:28:22Z" + }, + { + "videoId": "qBJVKXqEG7c", + "title": "Goose - 10/7/22 Joy Theater, New Orleans, LA (Full Show)", + "date": "2022-10-07", + "venue": null, + "type": "full_show", + "publishedAt": "2022-11-03T00:00:07Z" + }, + { + "videoId": "DU5epenUoT0", + "title": "Goose - Pancakes - 10/7/22 Joy Theater, New Orleans, LA", + "date": "2022-10-07", + "venue": "Pancakes - 10/7/22 Joy Theater, New Orleans, LA", + "type": "song", + "publishedAt": "2022-10-31T14:00:12Z" + }, + { + "videoId": "qQlNU2b9Hf0", + "title": "Goose - 10/1/22 Pullman Yards, Atlanta, GA (Full Show)", + "date": "2022-10-01", + "venue": null, + "type": "full_show", + "publishedAt": "2022-10-27T00:00:10Z" + }, + { + "videoId": "M3SYXTZcyg4", + "title": "Goose - Animal - 10/1/22 Pullman Yards, Atlanta, GA", + "date": "2022-10-01", + "venue": "Animal - 10/1/22 Pullman Yards, Atlanta, GA", + "type": "song", + "publishedAt": "2022-10-24T21:46:43Z" + }, + { + "videoId": "MiP9OmMHOK0", + "title": "Goose Live at Austin City Limits 10/16/22", + "date": "2022-10-16", + "venue": "Austin City Limits 10/16/22", + "type": "full_show", + "publishedAt": "2022-10-20T00:00:10Z" + }, + { + "videoId": "NNWswrTWdmE", + "title": "Goose - So Fresh, So Clean (feat. Big Boi - Outkast) - 10/8/22 Stubb's Late-Nite, Austin, TX", + "date": "2022-10-08", + "venue": "So Fresh, So Clean (feat. Big Boi - Outkast) - 10/8/22 Stubb's Late-Nite, Austin, TX", + "type": "song", + "publishedAt": "2022-10-09T17:02:04Z" + }, + { + "videoId": "X2sovm9Kero", + "title": "Day of Show - EP 10: Red Rocks + Colorado", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2022-09-29T00:00:11Z" + }, + { + "videoId": "0l_9j1Wu0yo", + "title": "Goose Live at Dillon Amphitheater 8/17/22", + "date": "2022-08-17", + "venue": "Dillon Amphitheater 8/17/22", + "type": "full_show", + "publishedAt": "2022-09-22T00:00:12Z" + }, + { + "videoId": "BKRuLrUSbP0", + "title": "Goose - 8/21/22 Greek Theater, Los Angeles, CA (Set Two)", + "date": "2022-08-21", + "venue": null, + "type": "song", + "publishedAt": "2022-09-21T00:00:17Z" + }, + { + "videoId": "XuSvIe1z47E", + "title": "Goose Live at Red Rocks 2022", + "date": "2022-08-18", + "venue": "Red Rocks 2022", + "type": "full_show", + "publishedAt": "2022-09-15T00:00:12Z" + }, + { + "videoId": "iFXhug9YwN8", + "title": "Goose - Bloodbuzz Ohio (The National) - 8/18/22 Red Rocks, Morrison, CO", + "date": "2022-08-18", + "venue": "Bloodbuzz Ohio (The National) - 8/18/22 Red Rocks, Morrison, CO", + "type": "song", + "publishedAt": "2022-09-06T15:53:22Z" + }, + { + "videoId": "IoFwHFjvfxg", + "title": "Goose - Slow Ready (feat. Lucius) - 8/21/22 Greek Theatre, Los Angeles, CA", + "date": "2022-08-21", + "venue": "Slow Ready (feat. Lucius) - 8/21/22 Greek Theatre, Los Angeles, CA", + "type": "song", + "publishedAt": "2022-08-22T10:17:24Z" + }, + { + "videoId": "XBU2-JOP_js", + "title": "Goosemas 2022 Announcement", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2022-08-19T16:20:41Z" + }, + { + "videoId": "fcbNW2OT2b4", + "title": "Goose x Trey Anastasio Band - Fall Tour 2022 Announcement", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2022-08-16T16:00:18Z" + }, + { + "videoId": "GLKbjuvq-OA", + "title": "Day of Show - EP 09: Radio City Music Hall 2022", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2022-08-03T16:00:17Z" + }, + { + "videoId": "SMjlNVgaffk", + "title": "Goose - Bonnaroo Late Night Set - 6/17/22", + "date": "2022-06-17", + "venue": null, + "type": "song", + "publishedAt": "2022-07-28T00:00:11Z" + }, + { + "videoId": "k32xDtpFDQo", + "title": "Goose - Boston Calling 2022 (Full Set)", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2022-07-21T00:00:10Z" + }, + { + "videoId": "2Yt6D7RT7xw", + "title": "'Dripfield' Tracking", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2022-07-15T16:39:09Z" + }, + { + "videoId": "IoyR-qNFXZw", + "title": "Goose - Peach Fest 2022 (Full Set)", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2022-07-14T00:00:09Z" + }, + { + "videoId": "yC0tt6VhyM8", + "title": "Goose Live at Radio City Music Hall, New York, NY 6/25/22 (Full Show)", + "date": "2022-06-25", + "venue": "Radio City Music Hall, New York, NY 6/25/22 (Full Show)", + "type": "full_show", + "publishedAt": "2022-06-29T00:00:11Z" + }, + { + "videoId": "nHR_guYzB20", + "title": "Goose - Hungersite \u2192 Arcadia (feat. Trey Anastasio) - 6/25/22 Radio City Music Hall, New York, NY", + "date": "2022-06-25", + "venue": "Hungersite \u2192 Arcadia (feat. Trey Anastasio) - 6/25/22 Radio City Music Hall, New York, NY", + "type": "sequence", + "publishedAt": "2022-06-26T15:13:34Z" + }, + { + "videoId": "sG7X_huem_M", + "title": "Goose - Hot Tea (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2022-06-24T04:00:22Z" + }, + { + "videoId": "fvSvuPNlqKg", + "title": "Goose - The Whales (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2022-06-24T04:00:17Z" + }, + { + "videoId": "VbPQizhkvdc", + "title": "Goose - Slow Ready (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2022-06-24T04:00:14Z" + }, + { + "videoId": "U3tHLXzUCGw", + "title": "Goose - Moonrise (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2022-06-24T04:00:12Z" + }, + { + "videoId": "3XKRV7N7eZE", + "title": "Goose - Honeybee (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2022-06-24T04:00:05Z" + }, + { + "videoId": "6zyX9IMK4rE", + "title": "Goose - 726 (Official Visualizer)", + "date": null, + "venue": null, + "type": "visualizer", + "publishedAt": "2022-06-24T04:00:04Z" + }, + { + "videoId": "uVvto9ICPpk", + "title": "Goose - Dripfield - 6/11/22 Legend Valley, Thornville, OH", + "date": "2022-06-11", + "venue": "Dripfield - 6/11/22 Legend Valley, Thornville, OH", + "type": "song", + "publishedAt": "2022-06-17T00:00:11Z" + }, + { + "videoId": "tH6N2PWPZhE", + "title": "Goose - Arrow (Official Video)", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2022-05-17T15:32:51Z" + }, + { + "videoId": "dc01VWngVPg", + "title": "Goose - Red Bird - 4/29/22 Asheville, NC", + "date": "2022-04-29", + "venue": "Red Bird - 4/29/22 Asheville, NC", + "type": "song", + "publishedAt": "2022-05-13T16:00:11Z" + }, + { + "videoId": "hck_1LKo6es", + "title": "Goose - Sweetwater 420 Fest 2022 (Full Set)", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2022-05-03T00:00:10Z" + }, + { + "videoId": "MxryvZvX0-Y", + "title": "Goose - 2/11/22 Louisville, KY (Full Show)", + "date": "2022-02-11", + "venue": null, + "type": "full_show", + "publishedAt": "2022-04-20T00:30:25Z" + }, + { + "videoId": "5m-jLa-0oqA", + "title": "Day of Show - EP 08: Goosemas VIII", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2022-04-14T16:00:10Z" + }, + { + "videoId": "ktjYcMyW9H0", + "title": "Goose - Hungersite (Official Music Video)", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2022-04-05T14:00:10Z" + }, + { + "videoId": "2FqcUT2fgdA", + "title": "Goose - 3/10/22 Cleveland, OH (Full Show)", + "date": "2022-03-10", + "venue": null, + "type": "full_show", + "publishedAt": "2022-03-30T00:00:09Z" + }, + { + "videoId": "2FUDirVzZ50", + "title": "Goose - 3/12/22 Philadelphia, PA (Full Show)", + "date": "2022-03-12", + "venue": null, + "type": "full_show", + "publishedAt": "2022-03-20T00:00:11Z" + }, + { + "videoId": "euBZGoIalQE", + "title": "Goose - Slow Ready \u2192 Hot Tea - 3/3/22 Charlotte, NC", + "date": "2022-03-03", + "venue": "Slow Ready \u2192 Hot Tea - 3/3/22 Charlotte, NC", + "type": "sequence", + "publishedAt": "2022-03-04T19:16:17Z" + }, + { + "videoId": "C3T2LoCqjB0", + "title": "Goose - Rockdale - 2/26/22 Goosemas", + "date": "2022-02-26", + "venue": null, + "type": "song", + "publishedAt": "2022-02-28T18:55:07Z" + }, + { + "videoId": "_bl-Izuc68g", + "title": "Goose - Dripfield (Official Music Video)", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2022-02-22T17:00:12Z" + }, + { + "videoId": "rQZpK4vyPGI", + "title": "Goose - Borne (Official Music Video)", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2022-02-17T15:00:34Z" + }, + { + "videoId": "ZrR5arrV0JU", + "title": "Goose - Wysteria Lane - 1/30/22 San Francisco, CA", + "date": "2022-01-30", + "venue": "Wysteria Lane - 1/30/22 San Francisco, CA", + "type": "song", + "publishedAt": "2022-02-13T18:00:11Z" + }, + { + "videoId": "z_0VHRyq4qQ", + "title": "Goose - 2/12/22 Pittsburgh, PA (Full Show)", + "date": "2022-02-12", + "venue": null, + "type": "full_show", + "publishedAt": "2022-02-13T04:50:33Z" + }, + { + "videoId": "3qDfTKCG4oA", + "title": "Goose - 2/4/22 Portland, OR (Full Show)", + "date": "2022-02-04", + "venue": null, + "type": "full_show", + "publishedAt": "2022-02-09T02:00:12Z" + }, + { + "videoId": "Fz0yojhvWLE", + "title": "Goose - Rosewood Heart - 2/3/22 Portland, OR", + "date": "2022-02-03", + "venue": "Rosewood Heart - 2/3/22 Portland, OR", + "type": "song", + "publishedAt": "2022-02-04T09:26:27Z" + }, + { + "videoId": "jtNXpKonh_s", + "title": "Goose - 1/29/22 San Francisco, CA (Full Show)", + "date": "2022-01-29", + "venue": null, + "type": "full_show", + "publishedAt": "2022-02-02T02:00:10Z" + }, + { + "videoId": "IQoPBmmZ7XE", + "title": "Goose - 12/31/21 Chicago, IL (Full Show)", + "date": "2021-12-31", + "venue": null, + "type": "full_show", + "publishedAt": "2022-01-01T07:50:00Z" + }, + { + "videoId": "t6dBGLVa7ag", + "title": "Goose - 12/30/21 Chicago, IL (Full Show)", + "date": "2021-12-30", + "venue": null, + "type": "full_show", + "publishedAt": "2021-12-31T07:20:04Z" + }, + { + "videoId": "TwFZ6QfOqaE", + "title": "Goose - 11/7/21 The Eastern, Atlanta, GA", + "date": "2021-11-07", + "venue": "11/7/21 The Eastern, Atlanta, GA", + "type": "song", + "publishedAt": "2021-12-20T01:00:26Z" + }, + { + "videoId": "LHudl_8a3-8", + "title": "Goose - 10/9/21 Terminal 5, New York, NY (Full Show)", + "date": "2021-10-09", + "venue": null, + "type": "full_show", + "publishedAt": "2021-12-19T01:00:21Z" + }, + { + "videoId": "twWu8Nn9TJs", + "title": "Goose - 11/17/21 Kansas City, MO (Full Show)", + "date": "2021-11-17", + "venue": null, + "type": "full_show", + "publishedAt": "2021-12-18T01:00:10Z" + }, + { + "videoId": "k-PAyiAPd8c", + "title": "SHENANIGANS NITE CLUB: THE MOVIE | Official Trailer", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2021-12-09T17:00:36Z" + }, + { + "videoId": "j-ZlbgsWhTs", + "title": "Goose - 11/22/21 Denver, CO (Full Show)", + "date": "2021-11-22", + "venue": null, + "type": "full_show", + "publishedAt": "2021-12-01T01:00:10Z" + }, + { + "videoId": "bk87V4NbzQI", + "title": "Goose - 11/21/21 Denver, CO (Full Show)", + "date": "2021-11-21", + "venue": null, + "type": "full_show", + "publishedAt": "2021-11-27T21:00:09Z" + }, + { + "videoId": "1b3D4gJZAdg", + "title": "SHENANIGANS NITE CLUB: THE MOVIE | Teaser Trailer", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2021-11-24T21:20:00Z" + }, + { + "videoId": "LJpZtXQ853w", + "title": "Goose - Hot Tea - 11/19/21 Aspen, CO", + "date": "2021-11-19", + "venue": "Hot Tea - 11/19/21 Aspen, CO", + "type": "song", + "publishedAt": "2021-11-20T19:00:11Z" + }, + { + "videoId": "hYTNR2TfW2c", + "title": "Goose - 726 - 11/17/21 Kansas City, MO", + "date": "2021-11-17", + "venue": "726 - 11/17/21 Kansas City, MO", + "type": "song", + "publishedAt": "2021-11-18T20:00:09Z" + }, + { + "videoId": "40v9tJPA5Rw", + "title": "Goose - 11/12/21 Austin, TX (Full Show)", + "date": "2021-11-12", + "venue": null, + "type": "full_show", + "publishedAt": "2021-11-15T01:05:09Z" + }, + { + "videoId": "FZUKuHmgVwM", + "title": "Goose - All I Need - 11/7/21 Atlanta, GA", + "date": "2021-11-07", + "venue": "All I Need - 11/7/21 Atlanta, GA", + "type": "song", + "publishedAt": "2021-11-08T17:00:12Z" + }, + { + "videoId": "nfdTv4V-hmc", + "title": "Goose - 10/31/21 Worcester, MA (Full Show)", + "date": "2021-10-31", + "venue": null, + "type": "full_show", + "publishedAt": "2021-11-03T00:00:10Z" + }, + { + "videoId": "zGqDgfX2pqE", + "title": "Dr. Evil Rap - 10/31/21 Worcester, MA", + "date": "2021-10-31", + "venue": "10/31/21 Worcester, MA", + "type": "song", + "publishedAt": "2021-11-02T16:33:10Z" + }, + { + "videoId": "9Ptxj8MghGw", + "title": "Goose - Drive - 10/28/21 Portland, ME", + "date": "2021-10-28", + "venue": "Drive - 10/28/21 Portland, ME", + "type": "song", + "publishedAt": "2021-10-29T14:00:07Z" + }, + { + "videoId": "2U4QF7iDMOc", + "title": "Goose - 10/8/21 Terminal 5, New York, NY (Full Show)", + "date": "2021-10-08", + "venue": null, + "type": "full_show", + "publishedAt": "2021-10-13T00:00:11Z" + }, + { + "videoId": "nkhuV5BogNc", + "title": "Goose - Fred The Film", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2021-10-06T00:00:09Z" + }, + { + "videoId": "N-bSTaNFaLs", + "title": "Goose - Sea Hear Now 2021 (Full Set)", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2021-09-22T01:00:10Z" + }, + { + "videoId": "KR4KNKHudQE", + "title": "Goose - 4848 Festival (Full Set) - Snowshoe, WV", + "date": null, + "venue": "4848 Festival (Full Set) - Snowshoe, WV", + "type": "song", + "publishedAt": "2021-09-08T01:00:11Z" + }, + { + "videoId": "mzU05v_wAg4", + "title": "Goose - This Old Sea (feat. Dawes) - 8/21/21 Fred The Festival", + "date": "2021-08-21", + "venue": null, + "type": "song", + "publishedAt": "2021-08-25T14:00:17Z" + }, + { + "videoId": "QiUmx6JbDDs", + "title": "Goose - This Old Sea - Floyd Fest 2021", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2021-07-26T00:00:10Z" + }, + { + "videoId": "8p-UuKaz10k", + "title": "Goose - 7/10/21 Denver, CO (Full Show)", + "date": "2021-07-10", + "venue": null, + "type": "full_show", + "publishedAt": "2021-07-22T00:00:11Z" + }, + { + "videoId": "uoZnP8XcPV8", + "title": "Goose - 7/9/21 Denver, CO (Full Show)", + "date": "2021-07-09", + "venue": null, + "type": "full_show", + "publishedAt": "2021-07-21T00:00:25Z" + }, + { + "videoId": "yflTqURH-2A", + "title": "Goose - Spirit Of The Dark Horse - 7/3/21 Eau Claire, WI", + "date": "2021-07-03", + "venue": "Spirit Of The Dark Horse - 7/3/21 Eau Claire, WI", + "type": "song", + "publishedAt": "2021-07-04T18:17:30Z" + }, + { + "videoId": "znhyzuxZBpQ", + "title": "Goose - A Western Sun \u2192 Echo of a Rose - 6/15/21 Perry, NY", + "date": "2021-06-15", + "venue": "A Western Sun \u2192 Echo of a Rose - 6/15/21 Perry, NY", + "type": "sequence", + "publishedAt": "2021-07-01T01:00:10Z" + }, + { + "videoId": "mqoWFVhdQCA", + "title": "Goose - 6/19/21 Thornville, OH (Full Show)", + "date": "2021-06-19", + "venue": null, + "type": "full_show", + "publishedAt": "2021-06-24T00:00:10Z" + }, + { + "videoId": "u7bfOv5bumc", + "title": "Goose - 6/18/21 Thornville, OH (Full Show)", + "date": "2021-06-18", + "venue": null, + "type": "full_show", + "publishedAt": "2021-06-23T00:00:11Z" + }, + { + "videoId": "JC2oKBKeRg4", + "title": "Goose - Tumble \u2192 Factory Fiction - 6/12/21 New Haven, CT", + "date": "2021-06-12", + "venue": "Tumble \u2192 Factory Fiction - 6/12/21 New Haven, CT", + "type": "sequence", + "publishedAt": "2021-06-15T01:00:12Z" + }, + { + "videoId": "PltHIGj4MRE", + "title": "Goose - Flodown", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2021-06-04T04:00:14Z" + }, + { + "videoId": "kYIC4BNdQBU", + "title": "Goose - (s\u2206tellite)", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2021-06-04T04:00:13Z" + }, + { + "videoId": "pkThFeRrRe8", + "title": "Dawn - (dawn)", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2021-06-04T04:00:13Z" + }, + { + "videoId": "EETmzgyBppk", + "title": "Goose - (7hunder)", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2021-06-04T04:00:10Z" + }, + { + "videoId": "5py9Id4V7IY", + "title": "Goose - SOS", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2021-06-04T04:00:02Z" + }, + { + "videoId": "3LHge_fp4SM", + "title": "Goose - The Labyrinth", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2021-06-04T04:00:01Z" + }, + { + "videoId": "1UooLX6XpDg", + "title": "Goose - Madhuvan", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2021-06-04T04:00:00Z" + }, + { + "videoId": "DL5hyTu0Dp0", + "title": "Goose - Elmeg The Wise, Madhuvan \u2192 Dark Horse - 5/9/21 Pelham, TN", + "date": "2021-05-09", + "venue": "Elmeg The Wise, Madhuvan \u2192 Dark Horse - 5/9/21 Pelham, TN", + "type": "sequence", + "publishedAt": "2021-05-31T01:00:11Z" + }, + { + "videoId": "rllSKbk6SB8", + "title": "Goose - So Ready - 5/6/21 Charleston, SC", + "date": "2021-05-06", + "venue": "So Ready - 5/6/21 Charleston, SC", + "type": "song", + "publishedAt": "2021-05-24T14:00:19Z" + }, + { + "videoId": "x2MYQiZ4QJM", + "title": "Goose - 5/8/21 Pelham, TN (Full Show)", + "date": "2021-05-08", + "venue": null, + "type": "full_show", + "publishedAt": "2021-05-17T00:00:27Z" + }, + { + "videoId": "bR73bfXyG-U", + "title": "Goose - Rosewood Heart - 5/8/21 Pelham, TN", + "date": "2021-05-08", + "venue": "Rosewood Heart - 5/8/21 Pelham, TN", + "type": "song", + "publishedAt": "2021-05-15T16:00:30Z" + }, + { + "videoId": "LdDvkcOxzLU", + "title": "Goose - Arrow \u2192 Bob Don - 5/3/21 Frederick, MD", + "date": "2021-05-03", + "venue": "Arrow \u2192 Bob Don - 5/3/21 Frederick, MD", + "type": "sequence", + "publishedAt": "2021-05-12T17:28:20Z" + }, + { + "videoId": "2gypxvKKZEw", + "title": "Goose - So Ready (Official Music Video)", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2021-04-16T04:00:11Z" + }, + { + "videoId": "hLzyOGgtM-c", + "title": "Goose - 4/9/21 Suwannee Rising (Set Two)", + "date": "2021-04-09", + "venue": null, + "type": "song", + "publishedAt": "2021-04-14T01:00:12Z" + }, + { + "videoId": "IxOXBaT3Ljw", + "title": "Goose - Spirit Of The Dark Horse", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2021-03-19T18:01:43Z" + }, + { + "videoId": "N084zBnPcxE", + "title": "Shenanigans Nite Club Trailer", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2021-03-17T14:00:06Z" + }, + { + "videoId": "anUoQ8gNKpg", + "title": "Goose - Camino I", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2021-02-16T17:00:01Z" + }, + { + "videoId": "ScT9FXmTDOk", + "title": "Goose - Ted Tapes 2021 (Full Album)", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2021-02-12T03:30:55Z" + }, + { + "videoId": "xLlZimt1KMk", + "title": "Goose - Moby", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2021-02-11T17:00:32Z" + }, + { + "videoId": "fHcCPUyLJwg", + "title": "Goose - Drive - 11/16/19 Buffalo, NY", + "date": "2019-11-16", + "venue": "Drive - 11/16/19 Buffalo, NY", + "type": "song", + "publishedAt": "2021-01-24T17:00:31Z" + }, + { + "videoId": "XVuPWvbXeXA", + "title": "Goose - Goosemas - Rockefeller Center, NYC (Full Show)", + "date": "2020-12-11", + "venue": null, + "type": "full_show", + "publishedAt": "2020-12-20T01:00:10Z" + }, + { + "videoId": "X9wMYwSA6EI", + "title": "Goose - Seekers On The Ridge Part I + II - Goosemas, Rockefeller Center, NYC 12/11/20", + "date": "2020-12-11", + "venue": null, + "type": "song", + "publishedAt": "2020-12-16T17:00:09Z" + }, + { + "videoId": "etXWTEXXicU", + "title": "Goose - The Empress of Organos - Goosemas, Rockefeller Center, NYC 12/11/20", + "date": "2020-12-11", + "venue": null, + "type": "song", + "publishedAt": "2020-12-14T18:00:07Z" + }, + { + "videoId": "Qwj7rhsuZSQ", + "title": "Goose - All I Need - Bingo Tour 2020", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2020-11-25T18:00:16Z" + }, + { + "videoId": "d4okzZyjpVI", + "title": "Bingo Tour (Official Trailer)", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2020-11-20T17:00:13Z" + }, + { + "videoId": "RAkOT4Be47Y", + "title": "Goose - 11/7/20 Morris, CT (Full Show)", + "date": "2020-11-07", + "venue": null, + "type": "full_show", + "publishedAt": "2020-11-19T01:00:09Z" + }, + { + "videoId": "INMpqUD56oU", + "title": "Goose - 11/6/20 Morris, CT (Full Show)", + "date": "2020-11-06", + "venue": null, + "type": "full_show", + "publishedAt": "2020-11-18T01:00:09Z" + }, + { + "videoId": "WPaxtjeCG1Q", + "title": "Goose - It Burns Within - 11/6/20 Morris, CT", + "date": "2020-11-06", + "venue": "It Burns Within - 11/6/20 Morris, CT", + "type": "song", + "publishedAt": "2020-11-15T18:00:09Z" + }, + { + "videoId": "USM4NQPku64", + "title": "Goose - Earthling or Alien? - 11/6/20 Morris, CT", + "date": "2020-11-06", + "venue": "Earthling or Alien? - 11/6/20 Morris, CT", + "type": "song", + "publishedAt": "2020-11-10T19:00:10Z" + }, + { + "videoId": "M5CUdq6Kv4o", + "title": "Goose - 10/19/20 Frederick, MD (Full Show)", + "date": "2020-10-19", + "venue": null, + "type": "full_show", + "publishedAt": "2020-11-02T01:00:27Z" + }, + { + "videoId": "tIGO3HCXdmg", + "title": "Goose - 10/15/20 Thornville, OH (Full Show)", + "date": "2020-10-15", + "venue": null, + "type": "full_show", + "publishedAt": "2020-11-01T00:00:10Z" + }, + { + "videoId": "NSIqjAeqkgk", + "title": "Goose - Night Lights (Full Album)", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2020-10-30T04:00:04Z" + }, + { + "videoId": "GGUa6wfLDVc", + "title": "Goose - Slow Ready \u2192 Fish in the Sea - 9/12/20 Yarmouth, MA", + "date": "2020-09-12", + "venue": "Slow Ready \u2192 Fish in the Sea - 9/12/20 Yarmouth, MA", + "type": "sequence", + "publishedAt": "2020-10-29T14:00:06Z" + }, + { + "videoId": "b1P8qdMuw_A", + "title": "Goose - AUATC (Bon Iver) - 10/19/20 Frederick, MD", + "date": "2020-10-19", + "venue": "AUATC (Bon Iver) - 10/19/20 Frederick, MD", + "type": "song", + "publishedAt": "2020-10-21T17:00:05Z" + }, + { + "videoId": "GnG0c08jTYA", + "title": "Goose - Look Out Cleveland - 10/3/20 Swanzey, NH", + "date": "2020-10-03", + "venue": "Look Out Cleveland - 10/3/20 Swanzey, NH", + "type": "song", + "publishedAt": "2020-10-13T16:00:10Z" + }, + { + "videoId": "Dj4cbvW77is", + "title": "Goose - Jive Lee - 9/11/20 Yarmouth, MA", + "date": "2020-09-11", + "venue": "Jive Lee - 9/11/20 Yarmouth, MA", + "type": "song", + "publishedAt": "2020-10-11T17:00:10Z" + }, + { + "videoId": "OayVs6gNU3k", + "title": "Goose - Time to Flee feat. Dave Grippo - Essex Junction, VT 10/2/20", + "date": "2020-10-02", + "venue": null, + "type": "song", + "publishedAt": "2020-10-05T00:00:10Z" + }, + { + "videoId": "bdQP6PGI5g4", + "title": "Goose - White Lights - 9/16/20 Morris, CT", + "date": "2020-09-16", + "venue": "White Lights - 9/16/20 Morris, CT", + "type": "song", + "publishedAt": "2020-09-29T00:00:10Z" + }, + { + "videoId": "piK12WTT1mQ", + "title": "Goose - Madhuvan - 9/16/20 Morris, CT", + "date": "2020-09-16", + "venue": "Madhuvan - 9/16/20 Morris, CT", + "type": "song", + "publishedAt": "2020-09-28T00:00:10Z" + }, + { + "videoId": "uTUCvwjvuq4", + "title": "Goose - Morris, CT - 9/17/20 (Full Show)", + "date": "2020-09-17", + "venue": null, + "type": "full_show", + "publishedAt": "2020-09-24T00:00:10Z" + }, + { + "videoId": "MCEWDzbBnKQ", + "title": "Goose - Morris, CT - 9/16/20 (Full Show)", + "date": "2020-09-16", + "venue": null, + "type": "full_show", + "publishedAt": "2020-09-23T00:00:28Z" + }, + { + "videoId": "l0WuKJAS0kk", + "title": "Goose - State of the Art (A.E.I.O.U.) - 9/17/20 Morris, CT", + "date": "2020-09-17", + "venue": "State of the Art (A.E.I.O.U.) - 9/17/20 Morris, CT", + "type": "song", + "publishedAt": "2020-09-21T18:15:46Z" + }, + { + "videoId": "WDwKCVT4rQg", + "title": "Goose - Drive - 6/19/20 Goose Community Rec Center", + "date": "2020-06-19", + "venue": null, + "type": "song", + "publishedAt": "2020-06-20T18:00:09Z" + }, + { + "videoId": "l7TV3qD0AbE", + "title": "Welcome to Bingo Tour!", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2020-06-19T16:15:09Z" + }, + { + "videoId": "G3Yo06o0DW4", + "title": "Rick + Peter Acoustic feat. Jeffrey Arevalo - Jive I \u2192 Rosewood Heart - 5/14/20", + "date": "2020-05-14", + "venue": null, + "type": "sequence", + "publishedAt": "2020-05-21T00:00:11Z" + }, + { + "videoId": "qFuu3kK4gpk", + "title": "Rick + Peter Acoustic feat. Jeff Arevalo - 4/5/20 The Solarium", + "date": "2020-04-05", + "venue": null, + "type": "song", + "publishedAt": "2020-05-02T23:15:29Z" + }, + { + "videoId": "nmUroLd3AXY", + "title": "Goose - Crystal Bay, NV - 2/16/20 (Full Show)", + "date": "2020-02-16", + "venue": null, + "type": "full_show", + "publishedAt": "2020-04-28T00:00:11Z" + }, + { + "videoId": "XcAxYNLLmh0", + "title": "Rick + Peter Acoustic feat. Jeffrey Arevalo - Ship of Fools", + "date": "2020-04-05", + "venue": null, + "type": "song", + "publishedAt": "2020-04-22T23:00:12Z" + }, + { + "videoId": "OldAzv6aaWE", + "title": "Rick + Peter Acoustic feat. Jeffrey Arevalo - Bruised Orange (Chain of Sorrow)", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2020-04-20T23:30:12Z" + }, + { + "videoId": "hLJ8XoJPgcc", + "title": "Goose - Tumble - 2/15/20 San Francisco, CA", + "date": "2020-02-15", + "venue": "Tumble - 2/15/20 San Francisco, CA", + "type": "song", + "publishedAt": "2020-04-13T23:00:11Z" + }, + { + "videoId": "EE1xEHkuRN4", + "title": "Goose - Alive and Well 'The Video'", + "date": "2019-07-27", + "venue": null, + "type": "song", + "publishedAt": "2020-04-10T01:00:11Z" + }, + { + "videoId": "Is0jVR_0tQ0", + "title": "Goose - Lovely Day - 3/11/20 Covington, KY", + "date": "2020-03-11", + "venue": "Lovely Day - 3/11/20 Covington, KY", + "type": "song", + "publishedAt": "2020-04-06T23:15:11Z" + }, + { + "videoId": "cwJAJc_r7B4", + "title": "Goose - Arcadia - 3/7/20 Chicago, IL", + "date": "2020-03-07", + "venue": "Arcadia - 3/7/20 Chicago, IL", + "type": "song", + "publishedAt": "2020-03-30T23:00:12Z" + }, + { + "videoId": "SzBpdBpKmYw", + "title": "Goose - Rosewood Heart - 3/21/20 T's House", + "date": "2020-03-21", + "venue": null, + "type": "song", + "publishedAt": "2020-03-23T23:00:10Z" + }, + { + "videoId": "oKYaXlGncgY", + "title": "Goose - Jive II - 3/15/20 T's House", + "date": "2020-03-15", + "venue": null, + "type": "song", + "publishedAt": "2020-03-17T23:00:33Z" + }, + { + "videoId": "52oc4lCDW-o", + "title": "Goose - Arrow \u2192 Butter Rum (feat. Jeremy Schon) - 3/11/20 Covington, KY", + "date": "2020-03-11", + "venue": "Arrow \u2192 Butter Rum (feat. Jeremy Schon) - 3/11/20 Covington, KY", + "type": "sequence", + "publishedAt": "2020-03-12T23:30:10Z" + }, + { + "videoId": "KCebMeoLZWY", + "title": "Day of Show - EP 07: Mexico pt. III", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2020-03-11T00:00:14Z" + }, + { + "videoId": "JpCjoBeWHkE", + "title": "Goose - Madhuvan - 12/14/19 Indianapolis, IN", + "date": "2019-12-14", + "venue": "Madhuvan - 12/14/19 Indianapolis, IN", + "type": "song", + "publishedAt": "2020-03-08T18:00:11Z" + }, + { + "videoId": "YRopMMnUpiI", + "title": "Day of Show - EP 07: Mexico pt. II", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2020-03-04T01:00:10Z" + }, + { + "videoId": "fbihsgGJBZE", + "title": "Day of Show - EP 07: Mexico pt. I", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2020-02-26T01:00:11Z" + }, + { + "videoId": "Lkcb-ltYQxM", + "title": "Goose - Portland, OR - 2/21/20 (Full Show)", + "date": "2020-02-21", + "venue": null, + "type": "full_show", + "publishedAt": "2020-02-24T01:00:10Z" + }, + { + "videoId": "4g-5I9-ithc", + "title": "Goose - Tempe, AZ - 2/5/20 (Full Show)", + "date": "2020-02-05", + "venue": null, + "type": "full_show", + "publishedAt": "2020-02-12T02:00:12Z" + }, + { + "videoId": "ZDIdrrBHqp0", + "title": "Goose - Arrow \u2192 Nights In White Satin - 1/25/20 Brooklyn, NY", + "date": "2020-01-25", + "venue": "Arrow \u2192 Nights In White Satin - 1/25/20 Brooklyn, NY", + "type": "sequence", + "publishedAt": "2020-02-03T01:07:16Z" + }, + { + "videoId": "ARTaQiHS38s", + "title": "Goose - Hot Tea - 1/25/20 Brooklyn, NY", + "date": "2020-01-25", + "venue": "Hot Tea - 1/25/20 Brooklyn, NY", + "type": "song", + "publishedAt": "2020-01-29T00:00:12Z" + }, + { + "videoId": "-detSZYgLmw", + "title": "Day of Show - EP 06: Goosemas VI", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2020-01-10T00:00:10Z" + }, + { + "videoId": "WsZ5dnW12Qk", + "title": "Goosemas VI (Full Show)", + "date": null, + "venue": null, + "type": "full_show", + "publishedAt": "2020-01-06T00:00:11Z" + }, + { + "videoId": "hD7IbVnKz_U", + "title": "Goose - Wysteria Lane", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2019-12-26T05:00:11Z" + }, + { + "videoId": "ZuC8KqmJlCk", + "title": "Goose - Linus and Lucy - 12/21/19 Goosemas VI", + "date": "2019-12-21", + "venue": null, + "type": "song", + "publishedAt": "2019-12-24T18:02:30Z" + }, + { + "videoId": "ZjfBeKfZlRg", + "title": "Goose - 11/16/19 Buffalo, NY (Set One)", + "date": "2019-11-16", + "venue": null, + "type": "song", + "publishedAt": "2019-12-11T00:00:11Z" + }, + { + "videoId": "QgffJk2yykU", + "title": "Goose - 11/10/19 Richmond, VA (Full Show)", + "date": "2019-11-10", + "venue": null, + "type": "full_show", + "publishedAt": "2019-11-25T00:00:12Z" + }, + { + "videoId": "Idd_Yxqga5Y", + "title": "Day of Show - EP 05: Halloween 2019", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2019-11-13T00:00:10Z" + }, + { + "videoId": "TZVT0oA6los", + "title": "Goose - Halloween Hits 2019", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2019-11-06T00:00:12Z" + }, + { + "videoId": "wRklRZPi3eI", + "title": "Goose - Butter Rum", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2019-10-16T14:00:10Z" + }, + { + "videoId": "QTVJsSChWUI", + "title": "Day of Show - EP 04: Resonance Music & Arts Festival", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2019-10-14T00:00:10Z" + }, + { + "videoId": "6zpCQiyctTY", + "title": "Goose - Resonance 2019 Late-Nite (Full Set)", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2019-09-24T23:00:11Z" + }, + { + "videoId": "f9dRxDkX8SI", + "title": "Goose - Birds of a Feather 2019 (Night 2 - Full Set)", + "date": null, + "venue": null, + "type": "full_show", + "publishedAt": "2019-09-10T23:00:11Z" + }, + { + "videoId": "xa7x6UzwhFQ", + "title": "Day of Show - EP 003", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2019-08-19T19:38:46Z" + }, + { + "videoId": "hVfDTXbG-po", + "title": "Goose - Peach Fest 2019 (Full Set)", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2019-07-30T22:58:16Z" + }, + { + "videoId": "3oGbtnOSl6M", + "title": "Day of Show - EP 002", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2019-07-18T17:40:09Z" + }, + { + "videoId": "eg-kixJzMjU", + "title": "Goose - Yeti \u2192 Electric Avenue \u2192 Arcadia \u2192 Hot Tea - Beanstalk 2019", + "date": null, + "venue": null, + "type": "sequence", + "publishedAt": "2019-07-17T16:45:00Z" + }, + { + "videoId": "Qa8jCVnkK-s", + "title": "Goose - So Ready - 6/26/19 Boulder, CO", + "date": "2019-06-26", + "venue": "So Ready - 6/26/19 Boulder, CO", + "type": "song", + "publishedAt": "2019-07-17T16:15:00Z" + }, + { + "videoId": "q1Kob7PkwE4", + "title": "Goose - White Lights \u2192 Crosseyed & Painless - 6/27/19 Fort Collins, CO", + "date": "2019-06-27", + "venue": "White Lights \u2192 Crosseyed & Painless - 6/27/19 Fort Collins, CO", + "type": "sequence", + "publishedAt": "2019-07-17T16:00:12Z" + }, + { + "videoId": "EaBx3gPn8xY", + "title": "Goose - Paradise Music Festival 2019 - Set I", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2019-07-17T00:49:55Z" + }, + { + "videoId": "nJsyt9llRh8", + "title": "Goose - Wysteria Lane \u2192 Hot Tea - Pizza in the Park 2019", + "date": null, + "venue": null, + "type": "sequence", + "publishedAt": "2019-06-20T14:15:00Z" + }, + { + "videoId": "TkB6qtytgW0", + "title": "Goose - Turned Clouds - Pizza in the Park 2019", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2019-06-20T14:00:04Z" + }, + { + "videoId": "W1-qlS3CDWY", + "title": "Goose - Arcadia - Summer Camp 2019", + "date": "2019-05-25", + "venue": null, + "type": "song", + "publishedAt": "2019-06-17T23:00:00Z" + }, + { + "videoId": "qpUEYoskFbI", + "title": "Goose - Tumble - Summer Camp 2019", + "date": "2019-05-25", + "venue": null, + "type": "song", + "publishedAt": "2019-06-17T22:45:00Z" + }, + { + "videoId": "aJ7x1gsYjnQ", + "title": "Goose - Hot Tea - Summer Camp 2019", + "date": "2019-05-25", + "venue": null, + "type": "song", + "publishedAt": "2019-06-17T22:30:00Z" + }, + { + "videoId": "D6DusXaG9hk", + "title": "Day of Show - EP 001", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2019-06-10T19:22:29Z" + }, + { + "videoId": "dV_ctCn5BXQ", + "title": "Goose - Summer Camp 2019 [Full Show]", + "date": "2019-05-25", + "venue": null, + "type": "full_show", + "publishedAt": "2019-05-30T19:02:12Z" + }, + { + "videoId": "zhSzVocE2_o", + "title": "Goose - Tumble \u2192 Arcadia \u2192 Butter Rum \u2192 Jive Lee - Domefest 2019", + "date": null, + "venue": null, + "type": "sequence", + "publishedAt": "2019-05-22T14:40:24Z" + }, + { + "videoId": "Oa3BT2Db7vo", + "title": "Goose - Indian River - 2/15/19 Covington, KY", + "date": "2019-02-15", + "venue": "Indian River - 2/15/19 Covington, KY", + "type": "song", + "publishedAt": "2019-05-01T16:58:49Z" + }, + { + "videoId": "W_oRLJZSA08", + "title": "Goose - Me & Julio Down by the School Yard - 1/31/19 Boulder, CO", + "date": "2019-01-31", + "venue": "Me & Julio Down by the School Yard - 1/31/19 Boulder, CO", + "type": "song", + "publishedAt": "2019-04-16T16:57:47Z" + }, + { + "videoId": "gNlXcI4D8I8", + "title": "Goose - Tumble - Covington, KY 2/15/19", + "date": "2019-02-15", + "venue": null, + "type": "song", + "publishedAt": "2019-04-02T18:17:53Z" + }, + { + "videoId": "lVnoQxq_BqQ", + "title": "Goose - Arcadia - 2/14/19 St. Louis, MO", + "date": "2019-02-14", + "venue": "Arcadia - 2/14/19 St. Louis, MO", + "type": "song", + "publishedAt": "2019-03-05T18:00:04Z" + }, + { + "videoId": "0Kd5ec8PyZ4", + "title": "Goose - All I Need \u2192 Disco Inferno \u2192 All I Need - 12/15/18 Columbus, OH", + "date": "2018-12-15", + "venue": "All I Need \u2192 Disco Inferno \u2192 All I Need - 12/15/18 Columbus, OH", + "type": "sequence", + "publishedAt": "2019-02-20T20:00:01Z" + }, + { + "videoId": "kTpRxmizVKo", + "title": "Goose - Hot Tea (feat. Mike Gantzer) - 12/14/18 Covington, KY", + "date": "2018-12-14", + "venue": "Hot Tea (feat. Mike Gantzer) - 12/14/18 Covington, KY", + "type": "song", + "publishedAt": "2019-02-13T19:58:44Z" + }, + { + "videoId": "rOvSoNOamCQ", + "title": "Colorado Winter 2019 - Recap", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2019-02-12T20:18:23Z" + }, + { + "videoId": "9zPpqwADQFw", + "title": "Goose - Flodown - 12/15/18 Columbus, OH", + "date": "2018-12-15", + "venue": "Flodown - 12/15/18 Columbus, OH", + "type": "song", + "publishedAt": "2019-02-05T20:00:00Z" + }, + { + "videoId": "UUw-2j4MYbE", + "title": "Goosemas V - Recap", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2019-01-28T22:30:01Z" + }, + { + "videoId": "u2cUqxsQu94", + "title": "Goose - Jive I \u2192 Jive Lee - 12/13/18 Indianapolis, IN", + "date": "2018-12-13", + "venue": "Jive I \u2192 Jive Lee - 12/13/18 Indianapolis, IN", + "type": "sequence", + "publishedAt": "2019-01-22T20:00:13Z" + }, + { + "videoId": "YprUjMfAKC4", + "title": "Goose - Resonance 2018 Late-Night Set", + "date": "2020-18-09", + "venue": null, + "type": "song", + "publishedAt": "2018-11-19T23:31:24Z" + }, + { + "videoId": "fHvufZkhxws", + "title": "GOOSEMAS V - Announcement", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2018-11-07T23:10:49Z" + }, + { + "videoId": "dVKJATvPlj0", + "title": "Goose - Ghostbusters (Run DMC Version) - 10/27/18 Bridgeport, CT", + "date": "2018-10-27", + "venue": "Ghostbusters (Run DMC Version) - 10/27/18 Bridgeport, CT", + "type": "song", + "publishedAt": "2018-11-04T18:16:56Z" + }, + { + "videoId": "IWn6T8FQbjg", + "title": "Goose - 6/2/18 Covington, KY - Set II + Encore", + "date": "2018-06-02", + "venue": null, + "type": "song", + "publishedAt": "2018-09-26T18:57:46Z" + }, + { + "videoId": "9VPc8uvUB_k", + "title": "Goose - Hot Tea [live]", + "date": "2008-18-09", + "venue": null, + "type": "song", + "publishedAt": "2018-09-17T16:34:02Z" + }, + { + "videoId": "39KTsVUcxOI", + "title": "Goose - All I Need - 6/1/18 Covington, KY", + "date": "2018-06-01", + "venue": "All I Need - 6/1/18 Covington, KY", + "type": "song", + "publishedAt": "2018-08-20T17:00:00Z" + }, + { + "videoId": "AR_cYu9pz0w", + "title": "Goose - Butter Rum - 6/1/18 Covington, KY", + "date": "2018-06-01", + "venue": "Butter Rum - 6/1/18 Covington, KY", + "type": "song", + "publishedAt": "2018-08-13T19:16:46Z" + }, + { + "videoId": "D5onPF3vioo", + "title": "Goose - Jive I (feat. Rob Compa & Michaelangelo Carruba) - 6/10/18 Disc Jam", + "date": "2018-06-10", + "venue": null, + "type": "song", + "publishedAt": "2018-08-02T16:56:31Z" + }, + { + "videoId": "G6k1-kU2VGY", + "title": "Netflox & Chill - Official Trailer", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2018-06-19T16:00:01Z" + }, + { + "videoId": "1mKk_1hDiek", + "title": "Goose - Turn On Your Love Light (feat. Ryan Dempsey) - 4/6/18 Burlington, VT", + "date": "2018-04-06", + "venue": "Turn On Your Love Light (feat. Ryan Dempsey) - 4/6/18 Burlington, VT", + "type": "song", + "publishedAt": "2018-04-09T17:00:01Z" + }, + { + "videoId": "Bu730RcUuOI", + "title": "Goose - So Ready - 2/2/18 Covington, KY", + "date": "2018-02-02", + "venue": "So Ready - 2/2/18 Covington, KY", + "type": "song", + "publishedAt": "2018-03-21T18:58:19Z" + }, + { + "videoId": "mg5vt2vo7o0", + "title": "Goose - Madhuvan - 1/14/18 Cleveland, OH", + "date": "2018-01-14", + "venue": "Madhuvan - 1/14/18 Cleveland, OH", + "type": "song", + "publishedAt": "2018-02-12T17:00:04Z" + }, + { + "videoId": "tHcMETJkVow", + "title": "Goose - So Ready (Ending) - 2/2/18 Covington, KY", + "date": "2018-02-02", + "venue": "So Ready (Ending) - 2/2/18 Covington, KY", + "type": "song", + "publishedAt": "2018-02-06T22:26:09Z" + }, + { + "videoId": "W5RHv5j7G3o", + "title": "Goose - Arcadia - 1/17/18 Pittsburgh, PA", + "date": "2018-01-17", + "venue": "Arcadia - 1/17/18 Pittsburgh, PA", + "type": "song", + "publishedAt": "2018-01-29T06:39:57Z" + }, + { + "videoId": "VQ9GgvjoBWI", + "title": "Spafford w/ Rick - Slip & Squander - 1/20/18 Lancaster, PA", + "date": "2018-01-20", + "venue": "Slip & Squander - 1/20/18 Lancaster, PA", + "type": "song", + "publishedAt": "2018-01-22T23:50:09Z" + }, + { + "videoId": "c4tqVH2MZ6w", + "title": "Goosemas: Battle of the Bands", + "date": null, + "venue": null, + "type": "song", + "publishedAt": "2017-11-21T23:56:09Z" + } +] \ No newline at end of file