API PER SVILUPPATORI v1.0 E SDK PER IA

Hub di Integrazione per Sviluppatori FlyCrawl

Integra l'estrazione da Web a Markdown ad alta velocità, mappe del sito (/map), ricerca live (/search), scraping in batch ed estrazione di schemi LLM in Python, LangChain, Cursor, Claude, Node.js e Go.

🧪 Swagger OpenAPI Spec 🤖 Model Context Protocol (MCP) 🔑 Ottieni Chiave API
POST /scrape

Web to Markdown

Single-page fast extraction + actions & caching.

POST /map

Site Mapper

Discover all URLs on a domain in <2 seconds.

POST /search

Search & Scrape

Live web search with auto-scraped Markdown results.

POST /extract

LLM Schema Extract

Extract typed JSON data matching any schema.

POST /batch/scrape

Batch Scraper

Scrape 50+ URLs concurrently in parallel.

🧪 Tester API Live (Console Integrata)
HTTP 200 OK — JSON Response
// Output will appear here after clicking 'Send Live Request'
🤖 AI AGENTS PROTOCOL
Model Context Protocol (MCP) v3.5

🤖 FlyCrawl Model Context Protocol (MCP) Server

Collega FlyCrawl direttamente a Claude Desktop, Cursor IDE, Windsurf e agenti IA come strumento nativo per scraping rapido, ricerca live, mappatura siti ed estrazione strutturata.

File: claude_desktop_config.json
{
  "mcpServers": {
    "flycrawl": {
      "command": "python",
      "args": ["-m", "flycrawl.mcp"],
      "env": {
        "FLYCRAWL_API_URL": "http://localhost:5120/api/v1",
        "FLYCRAWL_API_KEY": "fly_live_your_api_key"
      }
    }
  }
}

🛠️ Strumenti Nativi MCP per Modelli IA

⚡ flycrawl_scrape
Converte un singolo URL in Fit-Markdown pulito.
🗺️ flycrawl_map
Scopri tutti gli URL su un dominio in meno di 2s.
🔍 flycrawl_search
Cerca nel web live ed estrai automaticamente i migliori risultati.
🧠 flycrawl_extract
Estrai JSON strutturato tramite schema JSON.
🕸️ flycrawl_crawl
Crawler ricorsivo multipagina in profondità.

SDK Ufficiali e Integrazioni di Framework

# pip install flycrawl
from flycrawl import FlyCrawlApp

app = FlyCrawlApp(api_key="fly_live_your_api_key")

# 1. Scrape with Fit-Markdown & 24h Smart Cache
doc = app.scrape_url("https://example.com", params={"format": "markdown", "maxAge": 86400})
print(doc["content"])

# 2. Fast Site Mapping (<2s)
sitemap = app.map_url("https://example.com", params={"limit": 1000})
print(f"Discovered {sitemap['total_links']} URLs")

# 3. Live Web Search & Auto-Scrape
search_results = app.search("latest LLM reasoning benchmarks", limit=5)
for res in search_results["results"]:
    print(res["title"], res["url"])
            
🤖 SERVER MCP NATIVO v3.5

Server MCP (Model Context Protocol).

JSON-RPC 2.0 Endpoint: /api/v1/mcp

Connetti FlyCrawl direttamente come server di strumenti nativi in ​​Cursor IDE, Claude Desktop, Windsurf o agenti AI personalizzati. Consente agli LLM di acquisire, scansionare, cercare e vettorizzare autonomamente i contenuti Web con 1 clic.

{
  "mcpServers": {
    "flycrawl": {
      "url": "https://api.flycrawl.net/api/v1/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_FLYCRAWL_API_KEY"
      }
    }
  }
}
                    
flycrawl_vectorize

Web Scrape + Chunk + 1536-dim Embedding

flycrawl_scrape

Ultra-clean Fit-Markdown for LLM prompts

flycrawl_search

Live real-time search with scraped results

flycrawl_crawl

Recursive multi-page deep site crawl