Seamless API Integration
OpenAI-compatible endpoints. Authenticate once and plug Prxor into any existing pipeline, agent workflow, or mobile shortcut — no refactoring required.
Prxor AI is a headless API platform that routes natural language queries across local and cloud AI models — delivering precision context retrieval for any automated workflow.
Capabilities
A single unified API that handles document ingestion, semantic search, and intelligent model routing — so your workflows never slow down.
OpenAI-compatible endpoints. Authenticate once and plug Prxor into any existing pipeline, agent workflow, or mobile shortcut — no refactoring required.
Vector-index your documents, notes, and research through the /ingest endpoint. Your knowledge base stays private and on-premise.
Hybrid semantic search returns the most relevant context chunks in milliseconds — then the optimal AI model synthesizes a precise, source-cited answer.
Process
From raw document to grounded AI answer in a single round-trip. No configuration. No model management.
Upload any document, research note, or data source via the REST API. It's embedded, indexed, and ready to query immediately.
Send a natural language question. Prxor retrieves the most relevant context from your knowledge base using vector similarity search.
The system selects the optimal AI model — local, free-tier, or premium — based on query complexity and your budget policy.
Developer API
A clean REST interface built on FastAPI. Authenticate with a Bearer token, send a query, receive a grounded response — with source citations and model attribution included.
# Query your knowledge base curl -X POST https://prxor.com/ask \ -H "Authorization: Bearer <token>" \ -H "Content-Type: application/json" \ -d '{ "query": "Summarize the Q4 report", "session_id": "workflow-01", "mode": "auto", "top_k": 5 }' # Response { "answer": "Based on your Q4 report...", "model_used": "groq-scout", "sources": ["q4_report.pdf"], "cost_usd": 0.0 }