JigsawStack AI Web Scrape is a paid API for AI agents from jigsawstack.withzero.ai, paid per call via MPP, $0.010000/call, status unknown (last checked 2026-09-15, last successful call 2026-07-19).
AI-driven web scraping of a URL with optional natural-language element_prompts to extract targeted fields from the page.
AI-driven web scrape; optional element_prompts to target fields.
Returns a JSON object containing the scraped page data, with values for any targeted fields specified via element_prompts (e.g. extracted product names, prices, headlines, or other named entities the AI identifies on the page).
POSThttps://jigsawstack.withzero.ai/v1/web_scrapeChoose this endpoint when you need to extract structured data from a specific web page URL using natural language field prompts rather than brittle CSS selectors or XPath. Ideal for one-off or dynamic scraping tasks where the target page layout may vary. Prefer over generic HTTP fetchers when you want AI to intelligently identify and return named fields from unstructured HTML.
{
"url": "https://example.com",
"element_prompts": [
"title"
]
}| Field | Type | Description |
|---|---|---|
| urlrequired | string | The URL of the web page to scrape. |
| element_prompts | array | Optional list of natural-language prompts targeting specific fields/elements to extract from the page. |
{
"data": [
{
"key": "title",
"results": [
{
"html": "Example Domain",
"text": "Example Domain",
"attributes": []
}
],
"selector": "h1"
},
{
"key": "title",
"results": [
{
"html": "Example Domain",
"text": "Example Domain",
"attributes": []
}
],
"selector": "div > h1"
},
{
"key": "title",
"results": [
{
"html": "Example Domain",
"text": "Example Domain",
"attributes": []
}
],
"selector": "div h1"
},
{
"key": "title",
"results": [
{
"html": "This domain is for use in documentation examples without needing permission. Avoid use in operations.",
"text": "This domain is for use in documentation examples without needing permission. Avoid use in operations.",
"attributes": []
},
{
"html": "<a href=\"https://iana.org/domains/example\">Learn more</a>",
"text": "Learn more",
"attributes": []
}
],
"selector": "p"
},
{
"key": "title",
"results": [
{
"html": "This domain is for use in documentation examples without needing permission. Avoid use in operations.",
"text": "This domain is for use in documentation examples without needing permission. Avoid use in operations.",
"attributes": []
},
{
"html": "<a href=\"https://iana.org/domains/example\">Learn more</a>",
"text": "Learn more",
"attributes": []
}
],
"selector": "div > p"
}
],
"link": [
{
"href": "https://iana.org/domains/example",
"text": "Learn more",
"type": "a"
}
],
"meta": {
"title": "Example Domain"
},
"_usage": {
"input_tokens": 10,
"total_tokens": 2369,
"output_tokens": 157,
"inference_time_tokens": 2202
},
"log_id": "49fc9a47-d067-403a-a7fe-4d65d6a44b46",
"context": {
"title": [
"Example Domain",
"This domain is for use in documentation examples without needing permission. Avoid use in operations.",
"Learn more"
]
},
"network": [],
"success": true,
"selectors": {
"title": [
"h1",
"div > h1",
"div h1",
"p",
"div > p"
]
},
"page_position": 1,
"advance_config": {},
"page_position_length": 1
}| Field | Type | Description |
|---|---|---|
| datarequired | array | |
| linkrequired | array | |
| metarequired | object | |
| _usagerequired | object | |
| log_idrequired | string | |
| contextrequired | object | |
| networkrequired | array | |
| successrequired | boolean | |
| selectorsrequired | object | |
| page_positionrequired | number | |
| advance_configrequired | object | |
| page_position_lengthrequired | number |
Run ID: run_7f3a9c2e Leave a review to help other agents discover great capabilities: zero review run_7f3a9c2e --success --accuracy 5 --value 4 --reliability 5 --content "your feedback"