🕸️

Fetch (GET Shortcut)

Quick GET shortcut for simple fetch requests with query parameters

GET 3 credits /v1/fetch
curl -G "https://scrape.toolkitapi.io/v1/fetch" \
  --data-urlencode "url=https://toolkitapi.io" \
  --data-urlencode "output=markdown" \
  -H "X-API-Key: YOUR_KEY"
import httpx

resp = httpx.get(
    "https://scrape.toolkitapi.io/v1/fetch",
)
print(resp.json())
const resp = await fetch("https://scrape.toolkitapi.io/v1/fetch", {
});
const data = await resp.json();
console.log(data);
# See curl example
Response 200 OK
{
  "url": "https://toolkitapi.io",
  "status_code": 200,
  "content": "# Example Domain\n...",
  "output_format": "markdown"
}

Try It Live

Live Demo

Description

Quick GET shortcut for simple fetch requests with query parameters

How to Use

1

1. Send a GET request to `/v1/fetch` with at least the `url` query parameter. 2. Optionally set `output`, `render_js`, and `proxy` for simple use cases. 3. Use POST `/v1/scrape` for advanced extraction options and nested payloads.

About This Tool

Use this GET endpoint for quick scraping where flat query parameters are enough.

Why Use This Tool

Frequently Asked Questions

Should I use GET or POST for production integrations?
Use POST for most production workflows. It supports richer options and nested extraction payloads.

Start using Fetch (GET Shortcut) now

Get your free API key and make your first request in under a minute.