ScrapingBee - API Documentation

ScrapingBee offers a simple and easy-to-use API that allows you to scrape data from any website using JavaScript. With our API, you can retrieve data in any format including JSON, CSV, and XML.

Getting Started

Before you can use the ScrapingBee API, you will need an API key. Simply sign up for a free account on our website and create your API key. Once you have your API key, you can start making requests using the following API endpoint:

https://app.scrapingbee.com/api/v1/

Making Requests

To make a request to our API, you will need to include your API key as the api_key parameter. There are several endpoints available that you can use to scrape data from different websites. Here are some examples:

Basic Request

This is a basic request that scrapes the HTML content of a webpage.

const apiUrl = 'https://app.scrapingbee.com/api/v1/';
const apiKey = 'YOUR_API_KEY_HERE';
const websiteUrl = 'https://www.example.com/';

fetch(`${apiUrl}${websiteUrl}?api_key=${apiKey}`)
  .then(response => response.text())
  .then(data => console.log(data));

Advanced Request

This request uses advanced options to scrape a list of articles from a website.

const apiUrl = 'https://app.scrapingbee.com/api/v1/';
const apiKey = 'YOUR_API_KEY_HERE';
const websiteUrl = 'https://www.example.com/articles';
const options = {
  javascript: true,
  country_code: 'us',
  premium_proxy: true
};

fetch(`${apiUrl}${websiteUrl}?api_key=${apiKey}&${new URLSearchParams(options)}`)
  .then(response => response.json())
  .then(data => console.log(data));

Conclusion

ScrapingBee's API provides a simple and efficient way to scrape data from any website. With our easy-to-use API, you can retrieve data in any format you want. Plus, our API is reliable and fast, making it the perfect solution for all your scraping needs.

Related APIs