Skip to main content

Overview

Crawleo provides multiple output formats optimized for different use cases. Choose the format that best fits your application’s needs.

Available Formats

Raw HTML

Original page source with all elements intact.

Enhanced HTML

Clean HTML with ads, scripts, and tracking removed (default).

Plain Text

Extracted text content without HTML markup.

Markdown

Structured Markdown optimized for LLMs (default).

Format Details

Raw HTML

Returns the complete, unmodified HTML source of the page. Parameter: raw_html=true Best for:
  • Full page preservation
  • Custom parsing and extraction
  • When you need exact page structure
Example output:

Enhanced HTML

Returns cleaned HTML with ads, tracking scripts, and unnecessary elements removed. Enabled by default. Parameter: enhanced_html=true (default) Best for:
  • Cleaner content processing
  • Reduced noise in extraction
  • When you want HTML structure without clutter
Example output:

Plain Text

Returns extracted text content without any HTML markup. Parameter: page_text=true Best for:
  • Simple text processing
  • Search and analysis tasks
  • When HTML structure isn’t needed
Example output:

Markdown

Returns content converted to structured Markdown format. Enabled by default. Parameter: markdown=true (default) Best for:
  • RAG pipelines
  • LLM consumption
  • Vector database ingestion
  • Minimal token usage
Example output:

Format Comparison

Recommendations by Use Case

Use Markdown format for optimal results:
  • Preserves document structure (headers, lists, links)
  • Minimal token usage
  • Clean content ready for embedding
Use Markdown or Plain Text:
  • Markdown if structure matters (enabled by default)
  • Plain text for maximum token efficiency
Use Raw HTML or Enhanced HTML:
  • Raw HTML for full control
  • Enhanced HTML for cleaner starting point (default)
Use Plain Text or Markdown:
  • Easy to process with NLP tools
  • No HTML parsing required

Multiple Formats

You can request multiple formats in a single request:
The response will include all requested formats.
Pro tip: Markdown and Enhanced HTML are enabled by default. You only need to explicitly set parameters if you want to disable them or add additional formats.
Last modified on April 4, 2026