# Scrape page stop working

**URL:** https://community.mindstudio.ai/t/scrape-page-stop-working/1280
**Category:** Bug Reports
**Created:** [July 17, 2025, 5:30pm UTC](https://community.mindstudio.ai/t/scrape-page-stop-working/1280 "2025-07-17T17:30:48Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![Marin](https://avatars.discourse-cdn.com/v4/letter/m/cdc98d/32.png) [@Marin](https://community.mindstudio.ai/u/Marin)
#### Post date: [July 17, 2025, 5:30pm UTC](https://community.mindstudio.ai/t/scrape-page-stop-working/1280/1 "2025-07-17T17:30:48Z")

</div>

Hello,

I’m experiencing an issue with the **Scrape** block. I’m trying to scrape data from the following Google search URL:

> **[cars - Google Search](https://www.google.com/search?q=cars&num=12&sca_esv=4c094f9ab0275748&udm=7&tbs=srcf:H4sIAAAAAAAAAKvMLy0pTUrVS87PVcvMKy5JTC9KzAXztEsys0vys8HstMTk1KR8KKcoNSUlswTMzChNT8_1MSwdJA_1lqABLIGSpNAAAA,qdr:m&sxsrf=AE3TifMaspgJhxWDfYHLJ8i5uIjStjPKuQ:1752482113437&source=lnt&sa=X&ved=2ahUKEwjp0OLO-LuOAxVaVqQEHVy3LbcQpwV6BAgCEBM&biw=1600&bih=773&dpr=1)**

This is a valid link, and everything was working fine just two days ago, but today, it suddenly stopped, and I’m not sure why. I’ve attached screenshots to show what I’m seeing.

Could you please help me understand what might be causing this and how to fix it?

Thank you!

> **[Screenshot](https://prnt.sc/3-Ce8u-oVN_3)**
>
> Captured with Lightshot

> **[Screenshot](https://prnt.sc/7hlC_OQzCunF)**
>
> Captured with Lightshot

---

<div class="post-metadata">

### Author: ![jerry-mindstudio](https://yyz2.discourse-cdn.com/flex008/user_avatar/community.mindstudio.ai/jerry-mindstudio/32/26_2.png) [@jerry-mindstudio](https://community.mindstudio.ai/u/jerry-mindstudio)
#### Post date: [July 17, 2025, 7:00pm UTC](https://community.mindstudio.ai/t/scrape-page-stop-working/1280/2 "2025-07-17T19:00:36Z")

</div>

It looks like you copied/pasted your scrape URL from an in browser Google search. As a result, it’s bloated with extra characters.

We updated our scrape block to be able to scrape a list of URLs and there was an unnecessary comma in your Google Search URL. This caused the scrape block to think you were trying to scrape a list.

If you want to generate a clean Google Search URL without all the extra characters, ask AI to do it for you. A clean search URL for car videos would be `https://www.google.com/search?q=cars&tbm=vid`

Lmk if this makes sense!

---

<div class="post-metadata">

### Author: ![Marin](https://avatars.discourse-cdn.com/v4/letter/m/cdc98d/32.png) [@Marin](https://community.mindstudio.ai/u/Marin)
#### Post date: [July 17, 2025, 7:08pm UTC](https://community.mindstudio.ai/t/scrape-page-stop-working/1280/3 "2025-07-17T19:08:03Z")

</div>

Yep I saw this. As a solution if somebody will have the same issue try to replace , with & it works for me

---

<div class="post-metadata">

### Author: ![jerry-mindstudio](https://yyz2.discourse-cdn.com/flex008/user_avatar/community.mindstudio.ai/jerry-mindstudio/32/26_2.png) [@jerry-mindstudio](https://community.mindstudio.ai/u/jerry-mindstudio)
#### Post date: [July 17, 2025, 7:23pm UTC](https://community.mindstudio.ai/t/scrape-page-stop-working/1280/4 "2025-07-17T19:23:38Z")

</div>

That probably works, but it’s not a reliable solution.

The proper one would be to prompt a Generate Text block to “Create a Google video search query URL for {{formattedkeywords}}. Return only the URL, nothing else.” Save this as a variable {{urltoscrape}}.

Then Scrape URL block {{urltoscrape}}

This is the most complete way and avoids all the additional suffix tags that do nothing in terms of the actual returned search results.

This is how you get `https://www.google.com/search?q=cars&tbm=vid` instead of `https://www.google.com/search?q=cars&tbm=vid&!@#$ABC12334kjhkadshfkdjsahflkjdshfal1231321`
