Sample input
Article page
Marketing article with nav, cookie banner, useful link and boilerplate.
Sandbox
Explore realistic HTML inputs, jump straight into the playground, and copy SDK snippets for fast integration.
Marketing article with nav, cookie banner, useful link and boilerplate.
Developer docs with sidebar noise, code block and response section.
Feature matrix with ordered list and table preservation.
curl -X POST https://aingestor.com/api/v1/convert \
-H "Content-Type: application/json" \
-d '{
"url": "https://docs.example.com/page",
"options": {
"remove_navigation": true,
"remove_ads": true,
"preserve_code_blocks": true
}
}'import requests
response = requests.post(
"https://aingestor.com/api/v1/convert",
json={
"url": "https://docs.example.com/page",
"options": {
"remove_navigation": True,
"remove_ads": True,
"preserve_code_blocks": True,
},
},
timeout=30,
)
print(response.json())const response = await fetch("https://aingestor.com/api/v1/convert", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
url: "https://docs.example.com/page",
options: {
remove_navigation: true,
remove_ads: true,
preserve_code_blocks: true,
},
}),
});
console.log(await response.json());