CrawlDesk AI API - Release 1.0.0
· One min read
Release 1.0.0 — Initial Release
We are excited to introduce the first version of the CrawlDesk AI API, enabling developers to integrate AI-powered question answering directly into their applications using crawled data.
Features
Chat Completion API
- OpenAI-style
/v1/chat/completionsendpoint. - Supports conversational AI using structured message format.
- Designed for seamless integration with existing AI workflows.
Retrieval-Augmented Generation (RAG)
- Answers are generated using your crawled data.
- Ensures responses are relevant, contextual, and grounded.
API Key Authentication
- Secure access using Bearer token authentication.
- Easy integration into backend or frontend systems.
Simple API Usage
curl -X 'POST' \
'http://<base_url>/v1/chat/completions' \
-H 'accept: application/json' \
-H 'Authorization: Bearer <YOUR_API_KEY>' \
-H 'Content-Type: application/json' \
-d '{
"messages": [
{
"role": "user",
"content": "How to setup crawldesk?"
}
]
}'