aceintellegence
aceintellegence API
The API enables integration into apps and internal tools.
Use clear endpoints and predictable contracts to power automation and AI experiences.
Base URL
All API requests go through this endpoint.
https://api.aceintellegence.ai/v1Document Upload
Upload documents for analysis.
curl -X POST https://api.aceintellegence.ai/v1/documents \
-H "Authorization: Bearer $ACE_API_KEY" \
-F "file=@document.pdf"Chat Completions
Send document-based questions and get answers with citations.
curl -X POST https://api.aceintellegence.ai/v1/chat \
-H "Authorization: Bearer $ACE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"document_id": "doc_123",
"messages": [
{"role": "user", "content": "Summarize this document"}
]
}'Voice Chat
Stream voice interactions with the document intelligence API.
curl -X POST https://api.aceintellegence.ai/v1/voice \
-H "Authorization: Bearer $ACE_API_KEY" \
-F "audio=@recording.mp3" \
-F "document_id=doc_123"Rate Limits
Understand request limits per plan.
Free: 60 req/min
Pro: 300 req/min
Team: Unlimited