Table Of Content
    Back to Blog

    How Web Scraping is Used to Scrape Website using Infinite Scrolling?

    How-Web-Scraping-is-Used-to-Extract-Hotel-Data-Without-Code
    Category
    Other
    Publish Date
    February 4, 2022
    Author
    Scraping Intelligence

    For example, you want to scrape 100 Flipkart products from every category. But this formula will only extract the top 15 products on a page. Flipkart offers a feature called limitless scrolling, which eliminates the need for pagination (such as?page=2,?page=3) in the URL. If it had this functionality, we would have entered the value into a "while loop" and increased the page values as seen below.

    page_count = 0
    while page_count < 5:
    URL = "http://example.com?page=%d" %(page_count)
    # scraping code...
    page_count += 1
    

    So, let's go back to limitless scrolling.

    The usage of "Ajax" allows any webpage to employ limitless scrolling. However, that ajax request also includes a URL from which the goods on the same page are loaded when scrolling.

    To look at that URL.

    • Launch Google Chrome and navigate to the page.
    • Then, in the console, right-click and choose LogXMLHttpRequests.
    • Refresh the page and scroll gently now. When new goods are added, you will notice various URLs that begin with "XHR finished loading: GET." Users can click on them.
    • There are several varieties of such URLs available on Flipkart. The one you want begins with "flipkart.com/lc/pr/pv1/spotList1/spot1/productList?p=blahblahblah&lots of crap."
    • When you left-click upon the URL, this will be marked in the Chrome dev tools' Network tab. You may then save that link or open it in a new window.

    When you click the link in a new window, you'll find it easily to this, with about 15 to 20 goods on each page.

    Analyze the URL; there is indeed a Get parameter called?start=. (Some number)

    • Then, for the very first 20 goods, change the number to 0; for the following 20 products, set the number to 21, and if there are 15 products per page, set the number to 0, 16, 31, and so on. Iterate this URL in the while loop as I previously demonstrated, and you're done.
    • When you right-click and see the page source of that URL, you'll notice an tag with the data-src="" property; this is your product picture. This is simply an example from Flipkart.com. Distinct websites may have different Ajax urls and URL get parameters.

    Certain websites' Ajax URLs may additionally include "JSON" answers. If you locate them, you won't need to scrape them; simply retrieve the JSON response as you would any other JSON API.

    If you are looking for web scraping service using Infinite scrolling, contact Scraping Intelligence.

    Request for a quote!


    About the author


    Zoltan Bettenbuk

    Zoltan Bettenbuk is the CTO of ScraperAPI - helping thousands of companies get access to the data they need. He’s a well-known expert in data processing and web scraping. With more than 15 years of experience in software development, product management, and leadership, Zoltan frequently publishes his insights on our blog as well as on Twitter and LinkedIn.

    Latest Blog

    Explore our latest content pieces for every industry and audience seeking information about data scraping and advanced tools.

    build-financial-data-pipeline
    E-commerce & Retail
    16 Jan 2026
    How to Scrape Korean Retail Websites for Market Insights?

    Learn how to extract Korean retail websites data to track prices, new products, and competitors, helping brands improve eCommerce decisions globally.

    build-etl-pipeline-python-scraping
    Services
    12 Jan 2026
    How to Build an ETL Pipeline for Web Scraping with Python?

    Learn how to build an ETL pipeline for Web Scraping with Python using clear steps, trusted libraries, and reliable data loading for business teams.

    web-scraping-ebay-market-research
    E-commerce & Retail
    07 Jan 2026
    How Web Scraping Revolutionizes eBay Market Research?

    Learn how to use Web Scraping to extract eBay product prices, sales volume, and best seller data to track trends and compare competitor pricing.

    extract-google-yahoo-finance-insights
    Finance
    31 Dec 2025
    How to Extract Google & Yahoo Finance Insights?

    Learn how to extract Google & Yahoo Finance insights using simple methods to collect stock prices, financial data & market trends for smart decisions.