Use this file to discover all available pages before exploring further.
ScrapeLLM is designed to work inside AI pipelines. This page covers how to provide ScrapeLLM context to AI assistants and how to wire it into agents and LLM workflows.
If you want to give an AI assistant a quick summary of ScrapeLLM without fetching the docs, copy the block below:
ScrapeLLM is a REST API that extracts real AI responses from ChatGPT, Perplexity, Grok, Copilot, Gemini, Google AI Mode, and Amazon Rufus as structured JSON.Authentication: pass your API key in the X-API-Key header.Base URL: https://api.scrapellm.comSync request (GET): GET /scrapers/{scraper}?prompt=...&country=US Headers: X-API-Key: YOUR_KEY Returns: { scraper, status, result, links/sources/citations, credits_used, ... }Async request (POST → poll): POST /scrapers/{scraper}/jobs?prompt=...&country=US Returns: { job_id, status: "pending" } Poll: GET /jobs/{job_id} until status is "done" or "failed"Scrapers: chatgpt, perplexity, grok, copilot, gemini, google_ai_mode, amazon_rufusCredits: 3 per request. Free tier: 1,500/month.