docs
Getting Started
Other Languages

Getting Started with Any Language We Don't Have an Official SDK For

Other Languages

We don't offer SDKs for every language, so if you're wanting to use an unsupported language this is for you.

Our API is pretty simple, you need to send a POST request to https://api.getscraping.io/scrape (opens in a new tab) for a standard request, or https://api.getscraping.io/scrape_with_js (opens in a new tab) for a request where you wish to render javascript.

This post request needs to include two headers:

  • "X-API-Key": {{YOUR_API_KEY}}
  • "Content-Type": "application/json"

Additionally you'll need to include the stringified JSON params as the body of the request.

The minimum params are:

{
    "url": "example.com",
    "method": "GET"
}

See our request options docs for details on other available parameters.