Skip to main content

Get Your API Key

1

Create an Account

Sign up at crawleo.dev/login to create your account.
2

Choose a Plan

Select a subscription plan at crawleo.dev/pricing.
3

Get Your API Key

Once subscribed, you’ll receive your API key from the dashboard.

Make Your First Request

Search the Web

Use the Search API to perform real-time web searches:
curl -X GET "https://api.crawleo.dev/api/v1/search?query=artificial%20intelligence&count=5" \
  -H "Authorization: Bearer YOUR_API_KEY"

Crawl a URL

Use the Crawler API to extract content from specific URLs:
curl -X GET "https://api.crawleo.dev/api/v1/crawler?urls=https://example.com&markdown=true" \
  -H "Authorization: Bearer YOUR_API_KEY"

Choose Your Output Format

Crawleo supports multiple output formats optimized for different use cases:
FormatParameterBest For
Raw HTMLraw_html=trueFull page source with all elements
AI-Enhanced HTMLget_ai_enhanced_html=trueClean HTML without ads and scripts
Plain Textget_page_text=trueText extraction for processing
Markdownmarkdown=trueRAG pipelines and LLM consumption
For RAG and LLM applications, use Markdown output to minimize token usage and improve processing efficiency.

Next Steps