Transform, enrich, and convert data with a single API call. Extract emails, summarize text, translate content, classify documents, and build custom data pipelines.
# 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/pipeline/transform \ -H "X-API-Key: YOUR_KEY" \ -H "Content-Type: application/json" \ -d '{"data": "The quarterly earnings report shows revenue of $4.2M, up 23% YoY. Customer churn decreased to 2.1%.", "operations": ["summarize", "extract_entities"]}'
{"results": {"summarize": "Revenue reached $4.2M (+23% YoY) with churn improving to 2.1%.", "extract_entities": [{"text": "$4.2M", "type": "MONEY"}, {"text": "23%", "type": "PERCENTAGE"}, {"text": "2.1%", "type": "PERCENTAGE"}]}, "processing_time_ms": 450}