Sandbox

Start with deterministic samples before using live URLs.

Explore realistic HTML inputs, jump straight into the playground, and copy SDK snippets for fast integration.

Sample input

Article page

Marketing article with nav, cookie banner, useful link and boilerplate.

Sample input

Docs page

Developer docs with sidebar noise, code block and response section.

Sample input

Table and list

Feature matrix with ordered list and table preservation.

SDK example

curl

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
    }
  }'
SDK example

Python

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())
SDK example

JavaScript

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());