Scrape API

v1
Documentation

Web Scraping Gateway

Web scraping proxy API with round-robin key rotation and rate limiting.

Routes

Endpoints

GET / Documentation page
GET /v1/scrape Scrape a URL
Parameter Type Required Description
crawl string required The URL to scrape (e.g. https://example.com)
Rate Limiting

Limits

10
requests
30s
window
Examples

Code Examples

cURL
curl -X GET \
  "https://friesenjung.biz.id/v1/scrape?crawl=https://example.com"

JavaScript (fetch)
const res = await fetch(
  "https://friesenjung.biz.id/v1/scrape?crawl=https://example.com"
);

const data = await res.json();
console.log(data);

Python (requests)
import requests

res = requests.get(
    "https://friesenjung.biz.id/v1/scrape",
    params={"crawl": "https://example.com"}
)

print(res.json())
Response Schema

Success Response

200 OK — application/json
{
  "status": 200,
  "url": "https://example.com",
  "data": "# Page Title\n\nContent here..."
}

400 Bad Request
{
  "error": "Bad Request",
  "message": "Query parameter ?crawl=URL is required"
}

429 Too Many Requests
{
  "error": "Too Many Requests",
  "message": "Rate limit exceeded: max 10 requests per 30 seconds.",
  "retryAfter": 30
}