CrawlVolt
<- Field NotesGuide / 02 Aug 2026 / 6 min

Scrape, crawl or browser session?

Choose the smallest primitive that can reach the data. More browser state means more cost, more failure modes and more cleanup.

A single page, a site corpus and an authenticated workflow are different jobs. Forcing them through the same long-lived browser makes the integration harder to operate.

01

Start from scope and state.

NeedPrimitiveWhy
One known URL/v1/scrapeOne bounded render and extraction result.
Many pages on one origin/v1/crawlDepth, page and path limits stay explicit.
Clicks or form input/v1/browseActions are ordered, metered and observable.
Login state across calls/v1/sessionsThe encrypted cookie jar stays server-side.
Find content in a crawl/v1/searchSearch remains private to its crawl owner.
02

Keep each request bounded.

curl https://www.crawlvolt.com/v1/crawl \\
  -H "Authorization: Bearer $CRAWLVOLT_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{
    "url": "https://docs.example.com",
    "max_pages": 25,
    "max_depth": 2,
    "include_paths": ["/guides/**"]
  }'

The crawl stays on the exact origin, skips binary assets and applies include filters before excludes. Successful pages use the same output model and page quota as scrape.

03

Escalate capability only when the workflow needs it.

Selection rule

Scrape before crawl. Crawl before browse. Add a persistent session only when state must survive across requests.

This ordering minimizes browser time, narrows failure scope and makes retries easier to reason about.