The Ultimate Web Scraping API

Page2API is a delightful and versatile API that empowers you to scrape the web like a PRO.

1000 free API calls.
Based on all requests made in the last 30 days. 99.85% success rate.
No-code-friendly.
Trustpilot stars 4.6

page2api git:( main ) export API_KEY=YOUR_API_KEY
page2api git:( main ) curl -s -XPOST -H "Content-type: application/json" -d '{

  "api_key": "'"$API_KEY"'",
  "url": "https://www.amazon.com/s?k=luminox+watches",
  "real_browser": true,
  "premium_proxy": "us",
  "parse": {
    "watches": [
      {
        "_parent": "[data-component-type='s-search-result']",
        "title": "h2 >> text",
        "link": ".a-link-normal >> href",
        "price": ".a-offscreen >> text",
        "stars": ".a-icon-alt >> text"
      }
    ]
  }
}' 'https://www.page2api.com/api/v1/scrape' | python3.10 -mjson.tool # this will format the response

...

"result": {
  "watches": [
    {
      "title": "Mens Wrist Watch Leatherback Sea Turtle Giant 44 mm Black",
      "link": "https://www.amazon.com/Luminox-Leather-back-Turtle-Giant-0337/dp/B07D58LGG9",
      "price": "$189.00",
      "stars": "4.6 out of 5 stars"
    },
    {
      "title": "Men's Navy Seal Pacific Diver 3120 Series Silver Stainless Steel",
      "link": "https://www.amazon.com/Luminox-Pacific-Silver-Stainless-Oyster/dp/B089GYKDHD",
      "price": "$399.00",
      "stars": "4.7 out of 5 stars"
    }, ...
  ]
}

...

page2api git:( main ) export API_KEY=YOUR_API_KEY
page2api git:( main ) curl -s -XPOST -H "Content-type: application/json" -d '{

  "api_key": "'"$API_KEY"'",
  "batch": {
    "urls": [
      "https://www.amazon.com/dp/B099ZCG8T5",
      "https://www.amazon.com/dp/B09PZM76MG"
    ],
    "concurrency": 1
  },
  "parse": {
    "title": "h1#title >> text",
    "price": ".a-price .a-offscreen >> text"
  }
}' 'https://www.page2api.com/api/v1/scrape' | python3.10 -mjson.tool # this will format the response

...

"result": [
  {
    "title": "ZOTAC Gaming GeForce RTX™ 3080 Trinity OC LHR 10GB GDDR6X 320-bit ...",
    "price": "$732.99"
  },
  {
    "title": "ZOTAC Gaming GeForce RTX 3080 Trinity OC LHR 12GB GDDR6X 384-bit ...",
    "price": "$899.99"
  }
],

...

page2api git:( main ) export API_KEY=YOUR_API_KEY
page2api git:( main ) curl -s -XPOST -H "Content-type: application/json" -d '{

  "api_key": "'"$API_KEY"'",
  "url": "https://www.instagram.com/explore/tags/nasa/",
  "parse": {
    "posts": [
      {
        "_parent": "article a[role=link]",
        "image": "img >> src",
        "url": "_parent >> href",
        "title": "img >> alt"
      }
    ]
  },
  "premium_proxy": "us",
  "real_browser": true,
  "scenario": [
    { "wait_for": "article a[role=link]" },
    { "execute_js": "document.querySelector(\"#scrollview + div\")?.remove();" },
    { "execute": "parse" }
  ]
}' 'https://www.page2api.com/api/v1/scrape' | python3.10 -mjson.tool # this will format the response

...

"result": {
  "posts": [
    {
      "image": "https://scontent-atl3-2.cdninstagram.com/v/t51.2885-15/316458796_1178373929701303_4921666824295792341_n.webp",
      "url": "https://www.instagram.com/p/ClNbXaVjDKK/",
      "title": "#mars_patrol #telescope #spacestation #spacecraft#spacefacts #spacex"
    },
    {
      "image": "https://scontent-atl3-2.cdninstagram.com/v/t51.2885-15/316401087_650636230178599_6751741630935740910_n.jpg",
      "url": "https://www.instagram.com/p/ClO8jyxhvUP/",
      "title": "HEART NEBULA. Also known as IC 1805, The Heart Nebula lies some 7500 light years away from Earth."
    }, ...
  ]
}

...

page2api git:( main ) export API_KEY=YOUR_API_KEY
page2api git:( main ) curl -s -XPOST -H "Content-type: application/json" -d '{

  "api_key": "'"$API_KEY"'",
  "url": "https://news.ycombinator.com",
  "real_browser": true,
  "merge_loops": true,
  "parse": {
    "posts": [
      {
        "_parent": ".athing",
        "rank": ".rank >> text",
        "title": ".titleline >> text",
        "url": ".titleline a >> href"
      }
    ]
  },
  "scenario" : [
    {
      "loop" : [
        { "wait_for": ".titleline" },
        { "execute": "parse" },
        { "execute_js": "document.querySelector(\".morelink\").click()" }
      ],
      "iterations": 3
    }
  ]
}' 'https://www.page2api.com/api/v1/scrape' | python3.10 -mjson.tool # this will format the response

...

"result": {
  "posts": [
    {
      "rank": "1.",
      "title": "Improving Firefox stability with this one weird trick (hacks.mozilla.org)",
      "url": "https://hacks.mozilla.org/2022/11/improving-firefox-stability-with-this-one-weird-trick/",
    },
    {
      "rank": "2.",
      "title": "Human-Level Play in Diplomacy Combining Language Models with Strategic Reasoning (facebook.com)",
      "url": "https://ai.facebook.com/blog/cicero-ai-negotiates-persuades-and-cooperates-with-people/",
    },
    ...
    {
      "rank": "90.",
      "title": "Self Hosting a Google Maps Alternative with OpenStreetMap (wcedmisten.fyi)",
      "url": "https://wcedmisten.fyi/post/self-hosting-osm/"
    },
  ]
}

...


Live Demo

POST
page2api.com/api/v1/scrape
{"url":"https://www.page2api.com","parse":{"title":"h1 \u003e\u003e text","docs_url":"#docs-url \u003e\u003e href","contact":"//a[contains(@href,'mailto')] \u003e\u003e text","features":[{"_parent":".feature-container","title":"h2 \u003e\u003e text","description":".feature-description \u003e\u003e text"}]}}

  Just click on that "SCRAPE" button.

What customers are saying

Superb support
Superb, reliable support, even out of hours, patient and polite plus educational.
October 21, 2023
Very effective and trustworthy
Very effective and trustworthy!
I had some challenges which were addressed right away.
October 12, 2023
Page2API is without fail my favorite scraping API
Not only does Page2API work without fail constantly, but their customer support team is on a new level.
If i ever have issues integrating or have errors in my code they've always been responsive almost instantly and helped fix any errors.
I've never seen customer service like this anywhere, so massive thanks to the Page2API team.
July 14, 2023
Amazing product and support!
I have tried a lot of different scraping solutions and Page2Api is definitely the best one. It's very developer-friendly and Nick is extremely innovative in coming up with new ideas to solve problems.
The support is unreal as well.
I have sent Nick a request that I have trouble scraping and he's helped me fix all of them. Can highly recommend.
April 13, 2023
This API is amazing and the support was GREAT
This API is amazing and I am very excited to keep using it.
I'm writing this review because I was stumped on a very hard scrape for youtube transcripts, I brought my issue to support and in no time they had written what looks like a very tailored and complicated API call for me, I tested it and it worked perfect! Great great support.
April 19, 2023
Excellent service, super technical support!
I have been looking for such a quality for a long time, I have never met such an individual approach to clients.
Everything is at the highest level!
Nick very quickly helped to deal with all my questions, I am very grateful to him!
Recommend!
February 08, 2023
Fantastic Product and Customer Service
I'm a no-code guy trying to hack it in an API world... so I was pretty apprehensive about what I would be getting into with this.
I'm please to say that the customer service is so fantastic that they got me a solution in under 30 seconds that worked instantly in my application.
They did a great job and it works exactly as advertised.
Highly recommend them!
March 24, 2023
Surprisingly great service and support
I have certainly not come across any other internet initiative in the internet world that provides such good technical support and tries to help even if they are not related to them.
I will take as an example the approach of page2api to the customer in the startups I have founded.
February 16, 2023
Perfect for webcrapping javascript generated webpages
Page2API is perfect to be use from bubble or any other nocode tool.
It works submitting forms, scrapping info, and loading javascript generated content in webpages.
January 22, 2023
Best scraping service - tried them all
Hands down the best scraping service there is for a no-coder (...and I've tried them all).
Fast, easy to use, great documentation and stellar support.
Wish I'd found this months and months ago of waisting time at others. Highly recommend!
May 05, 2023
The best web scraper API for Bubble apps
Having tried several web scraper APIs I have found that Page2API is the best web scraper API for integrating with the Bubble API connector.
If you're a Bubble app developer Page2API is the web scraper you've been looking for!
November 30, 2022
Customer service is WORLD CLASS
Nick is serious about his business -- super knowledgeable and helpful whenever we have the slightest problem.
Honestly, the best customer service of any SaaS I've had the pleasure of working with.
10/10.
December 02, 2022
It's a perfect product
This team has a very high sense of responsibility for the product.
They let me know the part I don't know so kindly.
I didn't feel any discomfort when I used it in Korea
June 12, 2023
Highly professional support!
Amazing quick support!
But more than that, an actual relevant and pro help which solved my issue.
April 19, 2023
Incredible
Nick was incredible.
He helped me so much.
Need it for a research project and I highly highly recommend this service.
December 21, 2022
Great product, great support
I was searching for a scraping tool which fits to different types of needs and found Page2API.
The support is amazing and the product, too!
We will use Page2API also for our agency clients now.
Thank you for this great tool!
March 07, 2023
Really good provider for web-scraping…
Really good provider for web-scraping services, their customer service is top notch!
January 25, 2023
Great service with absolutely…
Great service with absolutely outstanding support
December 01, 2022

Simple, clear pricing.

No credit card required. 3 day free trial.

Lite
$49 / month
Page2API credit With the Lite plan, every month you get $49 credit for the usage of Page2API platform.
The remaining credit from the previous month will not be transferred to the next month.
$49
Concurrency With the Lite plan you can scrape 5 pages at the same time. 5
With the Lite plan you can scrape 61,250 pages with datacenter proxy and no browser. Datacenter proxy • No browser
0.0008 $/page
With the Lite plan you can scrape 12,250 pages with datacenter proxy and real browser. Datacenter proxy • Real browser
0.0040 $/page
With the Lite plan you can scrape 6,125 pages with premium proxy and no browser. Premium proxy • No browser
0.0080 $/page
With the Lite plan you can scrape 2,450 pages with premium proxy and real browser. Premium proxy • Real browser
0.0200 $/page
Standard
$99 / month
Page2API credit With the Standard plan, every month you get $99 credit for the usage of Page2API platform.
The remaining credit from the previous month will not be transferred to the next month.
$99
Concurrency With the Standard plan you can scrape 50 pages at the same time. 50
With the Standard plan you can scrape 165,000 pages with datacenter proxy and no browser. Datacenter proxy • No browser
0.0006 $/page
With the Standard plan you can scrape 33,000 pages with datacenter proxy and real browser. Datacenter proxy • Real browser
0.0030 $/page
With the Standard plan you can scrape 16,500 pages with premium proxy and no browser. Premium proxy • No browser
0.0060 $/page
With the Standard plan you can scrape 5,500 pages with premium proxy and real browser. Premium proxy • Real browser
0.0180 $/page
Pro
$249 / month
Page2API credit With the Pro plan, every month you get $249 credit for the usage of Page2API platform.
The remaining credit from the previous month will not be transferred to the next month.
$249
Concurrency With the Pro plan you can scrape 100 pages at the same time. 100
With the Pro plan you can scrape 622,500 pages with datacenter proxy and no browser. Datacenter proxy • No browser
0.0004 $/page
With the Pro plan you can scrape 124,500 pages with datacenter proxy and real browser. Datacenter proxy • Real browser
0.0020 $/page
With the Pro plan you can scrape 62,250 pages with premium proxy and no browser. Premium proxy • No browser
0.0040 $/page
With the Pro plan you can scrape 16,600 pages with premium proxy and real browser. Premium proxy • Real browser
0.0150 $/page
The charges are applied monthly on the billing date, and on this date - the credit will be set to the amount corresponding to the chosen subscription plan.
The remaining credit from the previous month will not be transferred to the next month.

The above prices do not include VAT.

Ready to Scrape the Web like a PRO?

1000 free API calls.
Based on all requests made in the last 30 days. 99.85% success rate.
No-code-friendly.
Trustpilot stars 4.6