Extract structured data from any URL. AI-powered parsing turns messy web pages into clean JSON. Handles dynamic content, pagination, and nested data structures.
# Get your free API key first curl -X POST https://api.aaido.dev/signup \ -H "Content-Type: application/json" \ -d '{"email": "you@example.com"}' # Make your first API call curl -X POST https://api.aaido.dev/v1/products/datapulse/extract \ -H "X-API-Key: YOUR_KEY" \ -H "Content-Type: application/json" \ -d '{"url": "https://example.com/product/123", "schema": {"name": "string", "price": "number", "rating": "number"}}'
{"data": {"name": "Widget Pro", "price": 29.99, "rating": 4.7}, "source_url": "https://example.com/product/123", "extracted_at": "2026-05-28T12:00:00Z", "confidence": 0.95}