Alex Z·FollowAug 7, 2021--ListenShareHey, to access the search params you just need to first initialize an object using the users href string, like let url = new URL(window.location.href) and then you can access the params like let idParam = url.searchParams.get(‘id’). Hope that helps!