Workflows & API Quick Start
Use Cases
Explore real-world workflow templates and learn how to use Ainoflow APIs in your automation projects.
Workflow Templates
Ready-to-use workflow templates showcasing Ainoflow APIs in action. Import directly into your automation platform.
n8n
Personal Expense Tracker Bot
AI-powered Telegram bot for hands-free expense tracking. Accepts receipt photos, voice messages, and text - automatically categorizes and stores expenses.
Telegram
OCR
Voice
GPT-4o
n8n
- ✓Receipt & invoice OCR
- ✓Voice-to-text transcription
- ✓Smart categorization (15+ categories)
- ✓Monthly analytics & summaries
Ainoflow APIs:
View Workflow Convert
Storage
API Quick Start
Simple examples to get started with each Ainoflow API. Copy these curl commands and start building.
Convert API
OCR and audio transcription
OCRExtract text from a PDF document
curl -X POST https://api.ainoflow.io/api/v1/convert/submit-file \ -H "Authorization: Bearer YOUR_API_KEY" \ -F "file=@invoice.pdf" \ -F "languages=en" \ -F "outputs=text"
AudioTranscribe audio to text
curl -X POST https://api.ainoflow.io/api/v1/convert/submit-file \ -H "Authorization: Bearer YOUR_API_KEY" \ -F "file=@meeting.mp3" \ -F "languages=en" \ -F "outputs=text"
Storage API
JSON object storage
PUTStore a JSON object
curl -X PUT https://api.ainoflow.io/api/v1/storage/json/expenses/2024-01 \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"total": 1250.50,
"items": ["groceries", "transport", "utilities"],
"currency": "EUR"
}'GETRetrieve a JSON object
curl https://api.ainoflow.io/api/v1/storage/json/expenses/2024-01 \ -H "Authorization: Bearer YOUR_API_KEY"
Files API
Binary file storage
POSTUpload a file
curl -X POST https://api.ainoflow.io/api/v1/files/receipts/receipt-001.pdf \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/pdf" \ --data-binary @receipt.pdf
GETGet download URL
curl https://api.ainoflow.io/api/v1/files/receipts/receipt-001.pdf \ -H "Authorization: Bearer YOUR_API_KEY"
Ready to Build?
Get your free API key and start integrating Ainoflow into your automation workflows today.