The web, extracted in plain English.
Describe the data you need. Spider's AI endpoints crawl, scrape, search, and drive real browsers, then hand back structured JSON, ready for your pipeline.
[
{ "name": "Widget Pro", "price": "$49.99" },
{ "name": "Gadget Plus", "price": "$29.99" },
{ "name": "Tool Max", "price": "$79.99" }
]Prompt in. JSON out.
Every AI Studio request follows the same three steps, no matter which endpoint you call.
Send a prompt
Pass a URL and describe what you want in plain English. No selectors, no XPath, no parsers.
AI extracts
Spider renders the page in a real browser, then runs your prompt against the DOM.
Get JSON
Clean structured output, ready for your database, API, or AI pipeline.
Five ways to ask.
One extraction pattern per endpoint. All five share the same prompt-driven request shape and your existing API key.
POST /ai/crawlCrawl a site with a natural-language goal. The crawler follows links toward whatever you described, not whatever a sitemap says.
POST /ai/scrapeHand the page a prompt instead of selectors. Spider renders it, runs your prompt over the DOM, and returns the fields you asked for as JSON.
POST /ai/searchSearch the web with an intent, not a keyword. Results are ranked by relevance to the question, not just lexical match.
POST /ai/browserDrive a real browser with English instructions. Spider figures out the clicks, fills, and waits without you writing selectors.
POST /ai/linksPull only the links you want, like product pages, docs, or articles, by describing them instead of writing a CSS selector.
One field, structured results.
Add a prompt field to any AI request. Works with every Spider SDK and the API key you already issued.
$ curl -X POST \
https://api.spider.cloud/ai/scrape \
-H "Authorization: Bearer $API_KEY" \
-d '{
"url": "https://example.com",
"prompt": "Extract product names and prices"
}'[
{ "name": "Widget Pro", "price": "$49.99" },
{ "name": "Gadget Plus", "price": "$29.99" },
{ "name": "Tool Max", "price": "$79.99" }
]Every plan, every endpoint.
Tiers set your throughput; the whole AI surface is included from day one. Runs alongside your pay-as-you-go credits.
Ship your first prompt in minutes.
Subscribe, grab your existing API key, and send one request. No selectors to maintain, no infrastructure to run.