OpenAdapterOpenAdapter
Tools

Scrape URL

Scrape any webpage. Extract text, links, images, metadata. Fast / stealth / dynamic (JS) modes.

Base URL & authentication

Base URL: https://api.openadapter.in

All requests need an Authorization: Bearer sk-cv-... header. Generate or copy your API key from the Dashboard → API Keys page.

Endpoint: POST /v1/tools/scrape Cost per call: 0.15 credits Minimum plan: free

Scrape any webpage. Extract text, links, images, metadata. Fast / stealth / dynamic (JS) modes.

Request

curl https://api.openadapter.in/v1/tools/scrape \
  -H "Authorization: Bearer $OPENADAPTER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"https://example.com","mode":"fast"}'
import requests

resp = requests.post(
    "https://api.openadapter.in/v1/tools/scrape",
    headers={"Authorization": f"Bearer {API_KEY}"},
    json={
    "url": "https://example.com",
    "mode": "fast",
},
)
print(resp.json())
const res = await fetch('https://api.openadapter.in/v1/tools/scrape', {
  method: 'POST',
  headers: {
    Authorization: `Bearer ${process.env.OPENADAPTER_API_KEY}`,
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
  "url": "https://example.com",
  "mode": "fast"
}),
});
console.log(await res.json());

Pricing

Each call costs 0.15 credits. Available on the free plan and above.

On this page