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.

Personal Expense Tracker Bot
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:
Convert
Storage
View Workflow

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

OCR
Extract 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"

Audio
Transcribe 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

PUT
Store 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"
  }'

GET
Retrieve 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

POST
Upload 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

GET
Get 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.