๐Ÿš€ Now in public beta

Web Access for
AI Agents

Give your agents the power to search, fetch, and research the entire web. Simple REST API with pay-per-use pricing.

// Search the web
const response = await fetch('https://clawscrape.dev/api/search', {
  method: 'POST',
  headers: { 
    'Content-Type': 'application/json',
    'X-API-Key': 'as_your_api_key'
  },
  body: JSON.stringify({ query: 'latest AI research 2024' })
});

const { results } = await response.json();
// โ†’ Array of {title, url, description}

Everything Your Agent Needs

Three powerful endpoints for complete web access

๐Ÿ”Ž

Web Search

Search the entire web using Brave Search. Get titles, URLs, and descriptions optimized for AI consumption.

POST /api/search
๐Ÿ“„

URL Fetch

Fetch any URL and get clean, readable content. Automatic HTML parsing, markdown conversion, and content extraction.

POST /api/fetch
๐Ÿง 

Deep Research

Perplexity-powered deep research with citations. Get comprehensive answers with sources for complex queries.

POST /api/research

Simple, Transparent Pricing

Pay only for what you use. No monthly fees.

Free Tier

$0/month
  • 100 search requests/hour
  • 50 fetch requests/hour
  • 10 research requests/hour
  • IP-based rate limiting
  • Community support
Get Started

API Documentation

Simple REST endpoints that just work

POST /api/search $0.01

Request

{
  "query": "string (required)",
  "count": 10,      // 1-20
  "country": "US",  // 2-letter code
  "lang": "en"      // language code
}

Response

{
  "query": "your search",
  "count": 10,
  "results": [
    {
      "position": 1,
      "title": "Result Title",
      "url": "https://...",
      "description": "Snippet text..."
    }
  ]
}
POST /api/fetch $0.02

Request

{
  "url": "https://example.com (required)",
  "format": "markdown", // or "text", "html"
  "maxLength": 50000
}

Response

{
  "url": "https://...",
  "title": "Page Title",
  "content": "# Heading\n\nClean markdown content...",
  "byline": "Author name",
  "siteName": "Example.com"
}
POST /api/research $0.05

Request

{
  "query": "your research question (required)",
  "depth": "normal",  // "quick", "normal", "deep"
  "focus": "internet", // "academic", "news"
  "maxTokens": 2000
}

Response

{
  "query": "your question",
  "answer": "Comprehensive answer with inline citations...",
  "citations": [
    {"index": 1, "url": "https://source1.com"},
    {"index": 2, "url": "https://source2.com"}
  ],
  "relatedQuestions": ["Follow-up question 1", "..."]
}

Ready to Build?

Get your free API key in seconds. No credit card required.

๐ŸŽ‰ Your API Key:

Save this key! Include it in the X-API-Key header.