{"id":12476,"date":"2023-10-24T14:36:43","date_gmt":"2023-10-24T14:36:43","guid":{"rendered":"https:\/\/new-blog.artlist.io\/blog\/?p=12476"},"modified":"2024-03-04T14:38:19","modified_gmt":"2024-03-04T14:38:19","slug":"inside-artlist-stephanie-halberstam","status":"publish","type":"post","link":"https:\/\/new-blog.artlist.io\/blog\/inside-artlist-stephanie-halberstam\/","title":{"rendered":"Inside Artlist: Meet Stephanie Halberstam"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-post\" data-elementor-id=\"12476\" class=\"elementor elementor-12476\" data-elementor-post-type=\"post\">\n\t\t\t\t\t\t<div class=\"elementor-inner\">\n\t\t\t\t<div class=\"elementor-section-wrap\">\n\t\t\t\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-b6c2c36 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"b6c2c36\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t\t\t<div class=\"elementor-row\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-34424ef6\" data-id=\"34424ef6\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-column-wrap elementor-element-populated\">\n\t\t\t\t\t\t\t<div class=\"elementor-widget-wrap\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-225dea51 elementor-widget elementor-widget-text-editor\" data-id=\"225dea51\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t<div class=\"elementor-text-editor elementor-clearfix\">\n\t\t\t\t<h2><b>Inside Artlist\u00a0<\/b><\/h2><table><tbody><tr><td>Welcome to Inside Artlist \u2014 our series that gives you a behind-the-scenes look at the expert team that powers Artlist. Get to know our team, their skills, and experience, and discover how they can help you and your business achieve your goals.<\/td><\/tr><\/tbody><\/table><p>\u00a0<\/p><p><span style=\"font-weight: 400;\">Our first insider is Stephanie Halberstam, a dedicated Account Manager for Artlist Business clients.\u00a0<\/span><\/p><h2><b>Warm-up<\/b><\/h2><p><span style=\"font-weight: 400;\">Before we dive in, we\u2019ve got a few warm-up questions:<\/span><\/p><p>\u00a0<\/p><h3><b>What are your top 3 three songs on Artlist right now?<\/b><\/h3>\n    <div class=\"playlist\" id=\"69d07a2986e14\"><\/div>\n\n    <script>\n        jQuery(document).ready(function($) {\n\n            if(\"songs\" == 'songs') {\n                $.ajax({\n                    method: \"POST\",\n                    url: \"https:\/\/search-api.artlist.me\/v1\/graphql\",\n                    contentType: \"application\/json\",\n                    data: JSON.stringify({\n                        query: `query SongList($page: Int!, $songSortType: Int!, $take: Int!, $vocalMenuId: Int!, $categoryIds: [Int], $collectionId: String, $searchTerm: String) {\n                        songList(page: $page, songSortType: $songSortType, take: $take, vocalMenuId: $vocalMenuId, categoryIds: $categoryIds, collectionId: $collectionId, searchTerm: $searchTerm) {\n                          songs {\n                            songId\n                            songName\n                            artistName\n                            isNew\n                            nameForURL\n                            sitePlayableFilePath\n\t\t\t\t\t\t\talbumImageFilePath\n\t\t\t\t\t\t\trelativeUrl\n                          }\n                          totalResults\n                        }\n                    }`,\n                        variables: JSON.stringify({\n                            \"page\": 1,\n                            \"songSortType\": 1,\n                            \"take\": 3,\n                            \"vocalMenuId\": 1,\n                            \"categoryIds\": [17],\n                            \"searchTerm\": \"dance\"\n                        }),\n                    })\n                }).done(function(res) {\n                    if (res == '') {\n                        console.log('none');\n                    } else {\n                        console.log('songs list: ', res);\n                        var data = res.data.songList.songs;\n                        if ($(\"#69d07a2986e14\").length && data.length > 0) {\n                            createAudioPlayers(data, \"69d07a2986e14\");\n                        } else if ($(\"#69d07a2986e14\").length && data.length == 0) {\n                            $(\"#69d07a2986e14\").empty().append('<div class=\"noSongsError\">No songs were found.<\/div>');\n                        }\n                    }\n                });\n            } else if(\"songs\" == 'sfx') {\n                $.ajax({\n                    method: \"POST\",\n                    url: \"https:\/\/search-api.artlist.me\/v1\/graphql\",\n                    contentType: \"application\/json\",\n                    data: JSON.stringify({\n                        query: `query SfxList($categoryIds: String!, $page: Float!, $tags: String!, $term: String!, $sortBy: SfxListRequestSortByOptions!) {\n\t\t\t\t\t\t\t\tsfxList(categoryIds: $categoryIds, page: $page, tags: $tags, term: $term, sortBy: $sortBy) {\n\t\t\t\t\t\t\t\t  page\n\t\t\t\t\t\t\t\t  songs {\n\t\t\t\t\t\t\t\t\t  albumImageFilePath\n\t\t\t\t\t\t\t\t\t  artistName\n\t\t\t\t\t\t\t\t\t  isNew\n\t\t\t\t\t\t\t\t\t  nameForURL\n\t\t\t\t\t\t\t\t\t  relativeUrl\n\t\t\t\t\t\t\t\t\t  sitePlayableFilePath        \n\t\t\t\t\t\t\t\t\t  songId \n\t\t\t\t\t\t\t\t\t  songName\n\t\t\t\t\t\t\t\t  }\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}`,\n                        variables: JSON.stringify({\n                            \"categoryIds\": \"Array\",\n                            \"page\": 1,\n                            \"tags\": \"\",\n                            \"term\": \"dance\",\n                            \"sortBy\": \"1\"\n                        }),\n                    })\n                }).done(function(res) {\n                    if (res == '') {\n                        console.log('none');\n                    } else {\n                        console.log('sfx list: ', res);\n                        var data = res.data.sfxList.songs;\n                        if ($(\"#69d07a2986e14\").length && data.length > 0) {\n                            createAudioPlayers(data, \"69d07a2986e14\");\n                        } else if ($(\"#69d07a2986e14\").length && data.length == 0) {\n                            $(\"#69d07a2986e14\").empty().append('<div class=\"noSongsError\">No songs were found.<\/div>');\n                        }\n                    }\n                });\n            }\n\n            function createAudioPlayers(data, playlistId) {\n                \/\/ main playlist container\n                const playlistContainer = $(\"#\" + playlistId);\n                \/\/ wavesurfers array\n                \/\/ const wavesurfers = [];\n                \/\/ loop over every song returned\n\n                if(!allWavesurfers){\n                    var allWavesurfers = [];\n                }\n                $.each(data, function(index, audio) {\n                    \/\/ if current type is sfx and current looped index is bigger than amount wanted via shortcode - then stop loop (because sfx request doesn't have \"take\" variable)\n                    if(\"songs\" == 'sfx' && (index + 1) > 3) {\n                        return false;\n                    }\n\n                    \/\/ audio player container\n                    const audioPlayer = $(\"<div>\").addClass(\"audioPlayer\");\n                    \/\/ album image\n                    const audioImage = $(\"<div>\").addClass(\"audioImage\");\n                    audioImage.append('<img decoding=\"async\" src=\"' + audio.albumImageFilePath + '\"\/>');\n                    \/\/ audio controls\n                    const audioControls = $(\"<div>\").addClass(\"audioControls\");\n                    const playPauseButton = $(\"<button>\").addClass(\"playPauseButton\").html('<i class=\"fas fa-play\"><\/i>');\n                    audioControls.append(playPauseButton);\n                    \/\/ song url\n                    var songUrl;\n                    if(\"songs\" == 'songs') {\n                        songUrl = 'https:\/\/artlist.io\/royalty-free-music\/song\/' + audio.nameForURL + '\/' + audio.songId + '?download=1&utm_source=blog';\n                    } else if(\"songs\" == 'sfx') {\n                        songUrl = 'https:\/\/artlist.io\/sfx\/track\/' + audio.nameForURL + '\/' + audio.songId + '?download=1&utm_source=blog';\n                    }\n                    \/\/ song name and artist name\n                    const audioNames = $(\"<div>\").addClass(\"audioNames\");\n                    const songName = $(\"<a>\").addClass(\"songName\").attr(\"href\", songUrl).attr(\"target\", \"_blank\").text(audio.songName);\n                    if (audio.isNew) {\n                        songName.append('<span class=\"isNewBadge\">NEW<\/span>');\n                    }\n                    const artistName = $(\"<span>\").addClass(\"artistName\").text(audio.artistName);\n                    audioNames.append(songName, artistName);\n                    \/\/ audio waveform container\n                    const audioWaveform = $(\"<div>\").addClass(\"audioWaveform\");\n                    \/\/ download button\n                    const audioDownload = $(\"<a>\").addClass(\"audioDownload\").attr(\"href\", songUrl).attr(\"target\", \"_blank\").html('<i class=\"icon download medium\"><\/i>');\n\n\n                    \/\/ APPEND ALL ELEMENTS INTO AUDIO PLAYER CONTAINER\n                    audioPlayer.append(audioImage, audioControls, audioNames, audioWaveform, audioDownload);\n\n                    \/\/ append audio player container into main playlist container\n                    playlistContainer.append(audioPlayer);\n\n                    \/* media viewed SEGMENT EVENT *\/\n                    const special_data = getProps();\n\n                    const observer = new IntersectionObserver(entries => {\n                        entries.forEach(entry => {\n                            if (entry.isIntersecting) {\n                                var assetId = audio.songId;\n                                var artist = audio.artistName;\n                                var title = audio.songName;\n                                var asset_type = null;\n                                if(\"songs\" == 'songs') {\n                                    asset_type = 'song';\n                                } else if(\"songs\" == 'sfx') {\n                                    asset_type = 'sfx';\n                                }\n                                analytics.track(\"media viewed\", {\n                                    asset_id: assetId || null,\n                                    asset_type: asset_type || null,\n                                    click_source: 'player',\n                                    artist: artist || null,\n                                    title: title || null,\n                                    genre: null,\n                                    ...special_data,\n                                });\n                                observer.unobserve(entry.target);\n                            }\n                        });\n                    }, {\n                        threshold: 0.5\n                    });\n                    observer.observe(audioPlayer[0]);\n\n                    \/\/ check screen size\n                    var mobileScreen = window.matchMedia('(max-width: 767px)');\n                    var waveformHeight = '';\n                    if (mobileScreen.matches) { \/\/ mobile\n                        waveformHeight = 15;\n                    } else { \/\/ desktop\n                        waveformHeight = 40;\n                    }\n\n                    \/\/ create wavesurfer instance\n                    const waveformId = `waveform-${playlistId}-${index}`; \/\/ Generate a unique ID for each waveform\n                    const waveformContainer = $(\"<div>\").attr(\"id\", waveformId).addClass(\"waveformContainer\");\n                    audioWaveform.append(waveformContainer);\n                    const wavesurfer = WaveSurfer.create({\n                        container: `#${waveformId}`,\n                        waveColor: \"#b1b1b1\",\n                        progressColor: \"#171717\",\n                        cursorColor: \"transparent\",\n                        height: waveformHeight,\n                        normalize: true,\n                    });\n                    \/\/ push current wavesurfer into wavesurfers array\n                    \/\/ wavesurfers.push(wavesurfer);\n                    allWavesurfers.push(wavesurfer);\n                    \/\/ load audio file into new wavesurfer\n                    wavesurfer.load(audio.sitePlayableFilePath);\n\n                    \/\/ add event listener to the play\/pause button\n                    playPauseButton.on(\"click\", () => {\n                        if (wavesurfer.isPlaying()) {\n                            wavesurfer.pause();\n                            playPauseButton.html('<i class=\"fas fa-play\"><\/i>');\n\n                            \/* media paused SEGMENT EVENT *\/\n                            var assetId = audio.songId;\n                            var artist = audio.artistName;\n                            var title = audio.songName;\n                            var asset_type = null;\n                            if(\"songs\" == 'songs') {\n                                asset_type = 'song';\n                            } else if(\"songs\" == 'sfx') {\n                                asset_type = 'sfx';\n                            }\n                            analytics.track(\"media paused\", {\n                                asset_id: assetId || null,\n                                asset_type: asset_type || null,\n                                click_source: 'player',\n                                artist: artist || null,\n                                title: title || null,\n                                genre: null,\n                                ...special_data,\n                            });\n                        } else {\n                            \/\/ pause all other audios that may be playing\n                            $('.playPauseButton').html('<i class=\"fas fa-play\"><\/i>');\n                            $.each(allWavesurfers, function(index, audio) {\n                                allWavesurfers[index].pause();\n                            });\n                            \/\/ then play current audio\n                            wavesurfer.play();\n                            playPauseButton.html('<i class=\"fas fa-pause\"><\/i>');\n\n                            \/* media played SEGMENT EVENT *\/\n                            var assetId = audio.songId;\n                            var artist = audio.artistName;\n                            var title = audio.songName;\n                            var asset_type = null;\n                            if(\"songs\" == 'songs') {\n                                asset_type = 'song';\n                            } else if(\"songs\" == 'sfx') {\n                                asset_type = 'sfx';\n                            }\n                            analytics.track(\"media played\", {\n                                asset_id: assetId || null,\n                                asset_type: asset_type || null,\n                                click_source: 'player',\n                                artist: artist || null,\n                                title: title || null,\n                                genre: null,\n                                ...special_data,\n                            });\n                        }\n                    });\n\n                    \/* media downloaded SEGMENT EVENT *\/\n                    audioDownload.on(\"click\", () => {\n                        var assetId = audio.songId;\n                        var artist = audio.artistName;\n                        var title = audio.songName;\n                        var asset_type = null;\n                        if(\"songs\" == 'songs') {\n                            asset_type = 'song';\n                        } else if(\"songs\" == 'sfx') {\n                            asset_type = 'sfx';\n                        }\n                        analytics.track(\"media downloaded\", {\n                            asset_id: assetId || null,\n                            asset_type: asset_type || null,\n                            click_source: 'player',\n                            artist: artist || null,\n                            title: title || null,\n                            genre: null,\n                            ...special_data,\n                        });\n                    });\n\n                    \/\/ add event listener to the click on the wave itself\n                    audioWaveform.on(\"click\", () => {\n                        setTimeout(() => {\n                            if (wavesurfer.isPlaying()) {\n                                wavesurfer.pause();\n                                playPauseButton.html('<i class=\"fas fa-play\"><\/i>');\n                            } else {\n                                \/\/ pause all other audios that may be playing\n                                $('.playPauseButton').html('<i class=\"fas fa-play\"><\/i>');\n                                $.each(allWavesurfers, function(index, audio) {\n                                    allWavesurfers[index].pause();\n                                });\n                                \/\/ then play current audio\n                                wavesurfer.play();\n                                playPauseButton.html('<i class=\"fas fa-pause\"><\/i>');\n                            }\n                        }, \"200\");\n                    });\n\n                });\n            }\n\n        });\n    <\/script>\n\n    <h3><b>Who is your all-time favorite artist or band?<\/b><span style=\"font-weight: 400;\"><br \/><\/span><i><span style=\"font-weight: 400;\">We Are The Good<\/span><\/i><\/h3><h3><b>What\u2019s the one piece of equipment or software you couldn\u2019t work without?<\/b><\/h3><p><span style=\"font-weight: 400;\">\u00a0I couldn\u2019t work without &#8220;monday.com&#8221; It helps me organize my thoughts and keep track of my clients.<\/span><\/p><h2><b>Interview\u00a0<\/b><\/h2><h3><b>Can you tell us a little about yourself and your journey to Artlist?<\/b><\/h3><p><span style=\"font-weight: 400;\">Sure, I was born and raised in Paris and moved to Israel 14 years ago. I learned Hebrew from scratch and did my undergraduate degree in Israel. Then I did a Masters of International Business in San Francisco.\u00a0<\/span><\/p><p><span style=\"font-weight: 400;\">Before joining Artlist, I worked as an SAAS Account Manager for a few years at global companies like Booking.com and SimilarWeb. Then in 2023, I joined the Artlist team as the first Account Manager for our Business clients.<\/span><\/p><p><span style=\"font-weight: 400;\">I love interacting with clients, getting to know them, and working together to solve their business needs. So, when I met the team here at Artlist \u2014 the role and the company felt right for me.\u00a0<\/span><\/p><p>\u00a0<\/p><h3><b>What does being an Account Manager at Artlist involve?\u00a0<\/b><\/h3><p><span style=\"font-weight: 400;\">It\u2019s a dynamic role that involves working with many internal teams and regular contact with our clients. No two days are the same, which is why I love it! One day, I might work with the legal team to create a custom license for an enterprise customer. Next, I might be working with the product team to learn about new features or pass on feedback from our clients to improve the product.\u00a0<\/span><\/p><p><span style=\"font-weight: 400;\">When I&#8217;m working with our clients, my role is to be their dedicated Account Manager, so first of all, I get to know them and their business. Then, I ensure they understand how to use Artlist and provide ongoing support.\u00a0<\/span><\/p><p><span style=\"font-weight: 400;\">One of the benefits we offer to our Business clients is custom curation. I think it\u2019s a unique service, and it feels like I have become a natural extension of the client&#8217;s creative team. If a client is working on a new commercial, we can talk about the vibe of the commercial or what they want to portray, and then I work with the Content team to put together a custom collection of assets for their specific project.\u00a0<\/span><\/p><p><span style=\"font-weight: 400;\">We offer custom curation because we know it can have a direct business impact for our clients. The data tells us that 55% of customers watch video content when making purchasing decisions. This could be a review, an ad, or even <\/span><a href=\"https:\/\/artlist.io\/blog\/all-about-user-generated-content\/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">UGC<\/span><\/a><span style=\"font-weight: 400;\"> about the product or company. However, we also know that some marketers don\u2019t create videos for a few reasons*:<\/span><\/p><ul><li style=\"font-weight: 400;\" aria-level=\"1\"><strong>23% are short on time<\/strong><\/li><li style=\"font-weight: 400;\" aria-level=\"1\"><strong>16% aren\u2019t sure where to start<\/strong><\/li><li style=\"font-weight: 400;\" aria-level=\"1\"><strong>10% think it\u2019s too expensive<\/strong><\/li><\/ul><p><span style=\"font-weight: 400;\">Curation and the Artlist platform, in general, help solve these problems by providing a customized, accessible, data-backed video marketing solution. Curation helps creative teams get the best out of Artlist and go to market faster.\u00a0<\/span><\/p><p><span style=\"font-weight: 400;\">Some clients have even reported that the data is helpful when trying to get internal buy-in on their videos, as they can back up their creative decisions with real-time insights and industry data.\u00a0<\/span><\/p><h3>\u00a0<\/h3><h3><b>What\u2019s your favorite part about the role?<\/b><\/h3><p><span style=\"font-weight: 400;\">What I love the most is speaking with the clients and seeing how Artlist impacts their day-to-day work and how they like our assets.\u00a0<\/span><\/p><p>\u00a0<\/p><h3><b>Can you share a memorable experience from your client interactions?<\/b><\/h3><p><span style=\"font-weight: 400;\">I had an introductory call with a client who wanted our help for one specific project. However, after speaking with them, I understood something more was possible. The team and I talked with them, and we created a custom agreement that served their needs better than a one-time agreement. Now, we work with them on an ongoing basis and have created some fun and meaningful projects together.<\/span><\/p><p>\u00a0<\/p><h3><b>The world of music and creative assets is ever-evolving. How do you stay up to date with trends to provide the best recommendations to your clients?\u00a0<\/b><\/h3><p><span style=\"font-weight: 400;\">Our content team is responsible for sourcing or working with Artists to create assets for the Artlist catalog. They are amazing at collaborating with us and the clients. They\u2019re an amazing resource for keeping up with trends, sharing industry insights, and offering advice on creative approaches.\u00a0<\/span><\/p><p><span style=\"font-weight: 400;\">We also do our own independent research and make sure to keep an eye on <\/span><a href=\"https:\/\/artlist.io\/blog\/social-media-trends-for-the-new-year\/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">social media trends<\/span><\/a><span style=\"font-weight: 400;\">, current affairs, and anything else that can add value for our clients.\u00a0<\/span><\/p><h3><b>What are some of the latest video marketing trends? Do you have any predictions for the near future?<\/b><\/h3><p><span style=\"font-weight: 400;\">No matter where you turn, everyone is talking about AI. I don\u2019t think it\u2019s something that we can or should ignore. It can <\/span><a href=\"https:\/\/artlist.io\/blog\/5-ways-to-speed-up-your-teams-content-creation-process\/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">speed up your team\u2019s content creation<\/span><\/a><span style=\"font-weight: 400;\"> process and be a handy extra resource for brainstorming and so much more.\u00a0<\/span><\/p><p><span style=\"font-weight: 400;\">We have integrated it into our platform through a new <\/span><a href=\"https:\/\/artlist.io\/blog\/blog-new-ai-image-search-2\/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">AI-powered search<\/span><\/a><span style=\"font-weight: 400;\"> and <\/span><a href=\"https:\/\/artlist.io\/blog\/how-to-find-the-perfect-footage-and-sfx-combination\/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">suggested SFX<\/span><\/a><span style=\"font-weight: 400;\">, with no doubt more features to come. I think it\u2019s an exciting space and will definitely impact the future of marketing and business.\u00a0<\/span><\/p><h3><b>Wrapping up<\/b><\/h3><p><span style=\"font-weight: 400;\">Want to work with Stephanie and the team to find the <\/span><a href=\"https:\/\/artlist.io\/blog\/find-music-for-your-brand-campaign-or-client\/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">right assets<\/span><\/a><span style=\"font-weight: 400;\"> for your brand? Read more about <\/span><a href=\"https:\/\/lp.artlist.io\/enterprise\/?utm_source=blog&amp;utm_medium=stephaniehalberstein\" target=\"_blank\" rel=\"noopener\" data-wplink-edit=\"true\"><span style=\"font-weight: 400;\">Artlist Business<\/span><\/a><span style=\"font-weight: 400;\"> and speak to the team.\u00a0<\/span><\/p><p>\u00a0<\/p><p>\u00a0<\/p><p>\u00a0<\/p><p><span style=\"font-weight: 400;\">Keep your eyes peeled for the next installment of Inside Artlist to learn more about the team and how Artlist can help <\/span><a href=\"https:\/\/artlist.io\/blog\/power-your-teams-creativity-with-artlist-enterprise\/\"><span style=\"font-weight: 400;\">power your team\u2019s creativity<\/span><\/a><span style=\"font-weight: 400;\"> and achieve your goals.\u00a0<\/span><\/p><p>\u00a0<\/p><p><span style=\"font-weight: 400;\">*Data source:<\/span><a href=\"https:\/\/vimeo.com\/blog\/post\/b2b-video-marketing-ideas\/\"><span style=\"font-weight: 400;\">https:\/\/vimeo.com\/blog\/post\/b2b-video-marketing-ideas\/<\/span><\/a><\/p><p>\u00a0<\/p>\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Inside Artlist\u00a0 Welcome to Inside Artlist \u2014 our series that gives you a behind-the-scenes look at the expert team that powers Artlist. Get to know our team, their skills, and experience, and discover how they can help you and your business achieve your goals. \u00a0 Our first insider is Stephanie Halberstam, a dedicated Account Manager [&hellip;]<\/p>\n","protected":false},"author":4,"featured_media":14856,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_uag_custom_page_level_css":"","footnotes":""},"categories":[525,587],"tags":[],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Meet the Artlist Team: Stephanie Halberstam<\/title>\n<meta name=\"description\" content=\"Get to know our team, their skills, and experience, and discover how they can help you and your business achieve your goals.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/new-blog.artlist.io\/blog\/inside-artlist-stephanie-halberstam\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Meet the Artlist Team: Stephanie Halberstam\" \/>\n<meta property=\"og:description\" content=\"Get to know our team, their skills, and experience, and discover how they can help you and your business achieve your goals.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/new-blog.artlist.io\/blog\/inside-artlist-stephanie-halberstam\/\" \/>\n<meta property=\"og:site_name\" content=\"Artlist Blog\" \/>\n<meta property=\"article:published_time\" content=\"2023-10-24T14:36:43+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-04T14:38:19+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/new-blog.artlist.io\/blog\/wp-content\/uploads\/2023\/10\/101023-Meet-the-Artlist-team-feature-1-Enterprise-blog-cover-2-scaled.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"717\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Artlist\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Artlist\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/inside-artlist-stephanie-halberstam\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/inside-artlist-stephanie-halberstam\/\"},\"author\":{\"name\":\"Artlist\",\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/#\/schema\/person\/942f411e584fce075c068967aebf4681\"},\"headline\":\"Inside Artlist: Meet Stephanie Halberstam\",\"datePublished\":\"2023-10-24T14:36:43+00:00\",\"dateModified\":\"2024-03-04T14:38:19+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/inside-artlist-stephanie-halberstam\/\"},\"wordCount\":985,\"publisher\":{\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/#organization\"},\"articleSection\":[\"Business\",\"Interviews\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/inside-artlist-stephanie-halberstam\/\",\"url\":\"https:\/\/new-blog.artlist.io\/blog\/inside-artlist-stephanie-halberstam\/\",\"name\":\"Meet the Artlist Team: Stephanie Halberstam\",\"isPartOf\":{\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/#website\"},\"datePublished\":\"2023-10-24T14:36:43+00:00\",\"dateModified\":\"2024-03-04T14:38:19+00:00\",\"description\":\"Get to know our team, their skills, and experience, and discover how they can help you and your business achieve your goals.\",\"breadcrumb\":{\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/inside-artlist-stephanie-halberstam\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/new-blog.artlist.io\/blog\/inside-artlist-stephanie-halberstam\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/inside-artlist-stephanie-halberstam\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/new-blog.artlist.io\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Business\",\"item\":\"https:\/\/new-blog.artlist.io\/blog\/enterprise\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Inside Artlist: Meet Stephanie Halberstam\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/#website\",\"url\":\"https:\/\/new-blog.artlist.io\/blog\/\",\"name\":\"Artlist Blog\",\"description\":\"Just artlist blog website\",\"publisher\":{\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/new-blog.artlist.io\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/#organization\",\"name\":\"Artlist Blog\",\"url\":\"https:\/\/new-blog.artlist.io\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/new-blog.artlist.io\/blog\/wp-content\/uploads\/2024\/10\/artlist-blog-logo.svg\",\"contentUrl\":\"https:\/\/new-blog.artlist.io\/blog\/wp-content\/uploads\/2024\/10\/artlist-blog-logo.svg\",\"width\":143,\"height\":28,\"caption\":\"Artlist Blog\"},\"image\":{\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/new-blog.artlist.io\/blog\/#\/schema\/person\/942f411e584fce075c068967aebf4681\",\"name\":\"Artlist\",\"url\":\"https:\/\/new-blog.artlist.io\/blog\/author\/artlist\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Meet the Artlist Team: Stephanie Halberstam","description":"Get to know our team, their skills, and experience, and discover how they can help you and your business achieve your goals.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/new-blog.artlist.io\/blog\/inside-artlist-stephanie-halberstam\/","og_locale":"en_US","og_type":"article","og_title":"Meet the Artlist Team: Stephanie Halberstam","og_description":"Get to know our team, their skills, and experience, and discover how they can help you and your business achieve your goals.","og_url":"https:\/\/new-blog.artlist.io\/blog\/inside-artlist-stephanie-halberstam\/","og_site_name":"Artlist Blog","article_published_time":"2023-10-24T14:36:43+00:00","article_modified_time":"2024-03-04T14:38:19+00:00","og_image":[{"width":2560,"height":717,"url":"https:\/\/new-blog.artlist.io\/blog\/wp-content\/uploads\/2023\/10\/101023-Meet-the-Artlist-team-feature-1-Enterprise-blog-cover-2-scaled.jpg","type":"image\/jpeg"}],"author":"Artlist","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Artlist","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/new-blog.artlist.io\/blog\/inside-artlist-stephanie-halberstam\/#article","isPartOf":{"@id":"https:\/\/new-blog.artlist.io\/blog\/inside-artlist-stephanie-halberstam\/"},"author":{"name":"Artlist","@id":"https:\/\/new-blog.artlist.io\/blog\/#\/schema\/person\/942f411e584fce075c068967aebf4681"},"headline":"Inside Artlist: Meet Stephanie Halberstam","datePublished":"2023-10-24T14:36:43+00:00","dateModified":"2024-03-04T14:38:19+00:00","mainEntityOfPage":{"@id":"https:\/\/new-blog.artlist.io\/blog\/inside-artlist-stephanie-halberstam\/"},"wordCount":985,"publisher":{"@id":"https:\/\/new-blog.artlist.io\/blog\/#organization"},"articleSection":["Business","Interviews"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/new-blog.artlist.io\/blog\/inside-artlist-stephanie-halberstam\/","url":"https:\/\/new-blog.artlist.io\/blog\/inside-artlist-stephanie-halberstam\/","name":"Meet the Artlist Team: Stephanie Halberstam","isPartOf":{"@id":"https:\/\/new-blog.artlist.io\/blog\/#website"},"datePublished":"2023-10-24T14:36:43+00:00","dateModified":"2024-03-04T14:38:19+00:00","description":"Get to know our team, their skills, and experience, and discover how they can help you and your business achieve your goals.","breadcrumb":{"@id":"https:\/\/new-blog.artlist.io\/blog\/inside-artlist-stephanie-halberstam\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/new-blog.artlist.io\/blog\/inside-artlist-stephanie-halberstam\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/new-blog.artlist.io\/blog\/inside-artlist-stephanie-halberstam\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/new-blog.artlist.io\/blog\/"},{"@type":"ListItem","position":2,"name":"Business","item":"https:\/\/new-blog.artlist.io\/blog\/enterprise\/"},{"@type":"ListItem","position":3,"name":"Inside Artlist: Meet Stephanie Halberstam"}]},{"@type":"WebSite","@id":"https:\/\/new-blog.artlist.io\/blog\/#website","url":"https:\/\/new-blog.artlist.io\/blog\/","name":"Artlist Blog","description":"Just artlist blog website","publisher":{"@id":"https:\/\/new-blog.artlist.io\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/new-blog.artlist.io\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/new-blog.artlist.io\/blog\/#organization","name":"Artlist Blog","url":"https:\/\/new-blog.artlist.io\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/new-blog.artlist.io\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/new-blog.artlist.io\/blog\/wp-content\/uploads\/2024\/10\/artlist-blog-logo.svg","contentUrl":"https:\/\/new-blog.artlist.io\/blog\/wp-content\/uploads\/2024\/10\/artlist-blog-logo.svg","width":143,"height":28,"caption":"Artlist Blog"},"image":{"@id":"https:\/\/new-blog.artlist.io\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/new-blog.artlist.io\/blog\/#\/schema\/person\/942f411e584fce075c068967aebf4681","name":"Artlist","url":"https:\/\/new-blog.artlist.io\/blog\/author\/artlist\/"}]}},"uagb_featured_image_src":{"full":["https:\/\/new-blog.artlist.io\/blog\/wp-content\/uploads\/2023\/10\/101023-Meet-the-Artlist-team-feature-1-Enterprise-blog-cover-2-scaled.jpg",2560,717,false],"thumbnail":["https:\/\/new-blog.artlist.io\/blog\/wp-content\/uploads\/2023\/10\/101023-Meet-the-Artlist-team-feature-1-Enterprise-blog-cover-2-150x150.jpg",150,150,true],"medium":["https:\/\/new-blog.artlist.io\/blog\/wp-content\/uploads\/2023\/10\/101023-Meet-the-Artlist-team-feature-1-Enterprise-blog-cover-2-300x84.jpg",300,84,true],"medium_large":["https:\/\/new-blog.artlist.io\/blog\/wp-content\/uploads\/2023\/10\/101023-Meet-the-Artlist-team-feature-1-Enterprise-blog-cover-2-768x215.jpg",768,215,true],"large":["https:\/\/new-blog.artlist.io\/blog\/wp-content\/uploads\/2023\/10\/101023-Meet-the-Artlist-team-feature-1-Enterprise-blog-cover-2-1024x287.jpg",1024,287,true],"1536x1536":["https:\/\/new-blog.artlist.io\/blog\/wp-content\/uploads\/2023\/10\/101023-Meet-the-Artlist-team-feature-1-Enterprise-blog-cover-2-1536x430.jpg",1536,430,true],"2048x2048":["https:\/\/new-blog.artlist.io\/blog\/wp-content\/uploads\/2023\/10\/101023-Meet-the-Artlist-team-feature-1-Enterprise-blog-cover-2-2048x574.jpg",2048,574,true]},"uagb_author_info":{"display_name":"Artlist","author_link":"https:\/\/new-blog.artlist.io\/blog\/author\/artlist\/"},"uagb_comment_info":0,"uagb_excerpt":"Inside Artlist\u00a0 Welcome to Inside Artlist \u2014 our series that gives you a behind-the-scenes look at the expert team that powers Artlist. Get to know our team, their skills, and experience, and discover how they can help you and your business achieve your goals. \u00a0 Our first insider is Stephanie Halberstam, a dedicated Account Manager&hellip;","_links":{"self":[{"href":"https:\/\/new-blog.artlist.io\/blog\/wp-json\/wp\/v2\/posts\/12476"}],"collection":[{"href":"https:\/\/new-blog.artlist.io\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/new-blog.artlist.io\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/new-blog.artlist.io\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/new-blog.artlist.io\/blog\/wp-json\/wp\/v2\/comments?post=12476"}],"version-history":[{"count":7,"href":"https:\/\/new-blog.artlist.io\/blog\/wp-json\/wp\/v2\/posts\/12476\/revisions"}],"predecessor-version":[{"id":18383,"href":"https:\/\/new-blog.artlist.io\/blog\/wp-json\/wp\/v2\/posts\/12476\/revisions\/18383"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/new-blog.artlist.io\/blog\/wp-json\/wp\/v2\/media\/14856"}],"wp:attachment":[{"href":"https:\/\/new-blog.artlist.io\/blog\/wp-json\/wp\/v2\/media?parent=12476"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/new-blog.artlist.io\/blog\/wp-json\/wp\/v2\/categories?post=12476"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/new-blog.artlist.io\/blog\/wp-json\/wp\/v2\/tags?post=12476"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}